使用最新版本的haml,haml-rails,sass和bootstrap-sass运行Rails 4.1.4.对于用户显示,我的HAML是这样的:
.tutors-listing
.row
- @users.each do |tutor|
.col-xs-12.col-md-3
.row.tutor
.col-xs-offset-1.col-xs-4.col-md-12
= image_tag tutor.photo, :class => 'img-responsive img-circle tutor-photo'
%h4.tutor-name
= tutor.first_name
%p
teaches
%strong.tutor-skills
= tutor.teachables
Run Code Online (Sandbox Code Playgroud)
但是,此标记会导致以下故障:

我希望有人可以解决这里的错误.在中断点处,应该有4列均匀.