BootStrap 怎样调整的宽度

2025-04-14 02:41:50
推荐回答(1个)
回答1:

//对于 Bootstrap 3.0

For Bootstrap 3.0:
// class="col-md-*" 其中的*表示列的宽度

With twitter bootstrap 3 use: class="col-md-*" where * is a number of columns of width.

A
B
C
D


//对于 Bootstrap 2.0

For Bootstrap 2.0:
// class = "span*" 其中的*表示列的宽度

With twitter bootstrap 2 use: class="span*" where * is a number of columns of width.

A
B
C
D


// 如果有 元素,在 th 上设置同样有效。

** If you have elements set the width there and not on the elements.