Rails:试图使Bootstrap的offset类起作用

时间:2018-09-27 03:18:38

标签: css ruby-on-rails twitter-bootstrap

我正在尝试使用Bootstrap的offset类使这些表单域居中。

附加的是我当前表单的图像,也是我希望表单看起来的图像。偏移量类似乎对我不起作用。

任何帮助将不胜感激!

以下所有代码都在div.container中:

mod_rewrite

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

Offsetting columns

在Bootstrap中,偏移类名称为.col-md-offset-* 所以应该是

<div class="col-md-4 col-md-offset-4">
  #...
</div>