class="table table-bordered table-striped table-responsive"
style="min-width:1000pxtable-layout: fixedword-break:break-all">
<thead>
<tr>
<th style="width:4%">序号</th>
<th style="width:24%">Task ID</th>
<th style="width:45%">参数</th>
<th>Task 名称</th>
<th>执行时间</th>
<th>状态</th>
</tr>
</thead>
<tbody>
table-layout: fixed固定表格宽度
word-break:break-all列的内容换行
<th style="width:4%">序号</th> width:4% 设置列的宽度
//对于 Bootstrap 3.0For Bootstrap 3.0:
// class="col-md-*" 其中的*表示列的宽度
With twitter bootstrap 3 use: class="col-md-*" where * is a number of columns of width.
<tr class="something">
<td class="col-md-2">A</td>
<td class="col-md-3">B</td>
<td class="col-md-6">C</td>
<td class="col-md-1">D</td>
</tr>
//对于 Bootstrap 2.0
For Bootstrap 2.0:
// class = "span*" 其中的*表示列的宽度
With twitter bootstrap 2 use: class="span*" where * is a number of columns of width.
<tr class="something">
<td class="span2">A</td>
<td class="span3">B</td>
<td class="span6">C</td>
<td class="span1">D</td>
</tr>
// 如果有<th>元素,在 th 上设置同样有效。
** If you have <th>elements set the width there and not on the <td>elements.
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.
2.//对于 Bootstrap 2.0
For Bootstrap 2.0:
// class = "span*" 其中的*表示列的宽度
With twitter bootstrap 2 use: class="span*" where * is a number of columns of width.
3.// 如果有<th>元素,在 th 上设置同样有效。
** If you have <th>elements set the width there and not on the <td>elements.
Bootstrap,来自 Twitter,是目前很受欢迎的前端框架。
Bootstrap 是基于 HTML、CSS、JavaScript 的,它简洁灵活,使得 Web 开发更加快捷。 它由Twitter的设计师Mark Otto和Jacob Thornton合作开发,是一个CSS/HTML框架。
Bootstrap提供了优雅的HTML和CSS规范,它即是由动态CSS语言Less写成。
Bootstrap一经推出后颇受欢迎,一直是GitHub上的热门开源项目,包括NASA的MSNBC(微软全国广播公司)的Breaking News都使用了该项目。
国内一些移动开发者较为熟悉的框架,如WeX5前端开源框架等,也是基于Bootstrap源码进行性能优化而来。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)