Bootstrap .row 是否应该包含 .col-*?
Should Bootstrap .row contain .col-*?
我想用一些内容填充.row
,我应该总是使用<div class='col-*'>Content</div>
还是我可以将我的Content
放入.row
?
优缺点是什么?
行 class 的预期作用是包含和清除列的浮动。如果您要确保对不同屏幕尺寸的控制以及显示的完全响应,建议使用内部的 col-*
classes。你仍然可以把你想要的任何东西放在 .row
里,但是 bootstrap 建议你不这样
来自bootstrap documentation"Content should be placed within columns, and only columns may be immediate children of rows."
所以不,不建议您将任何内容直接放在行内。
我想用一些内容填充.row
,我应该总是使用<div class='col-*'>Content</div>
还是我可以将我的Content
放入.row
?
优缺点是什么?
行 class 的预期作用是包含和清除列的浮动。如果您要确保对不同屏幕尺寸的控制以及显示的完全响应,建议使用内部的 col-*
classes。你仍然可以把你想要的任何东西放在 .row
里,但是 bootstrap 建议你不这样
来自bootstrap documentation"Content should be placed within columns, and only columns may be immediate children of rows."
所以不,不建议您将任何内容直接放在行内。