有谁知道是否可以应用样式表与Twitter Bootstrap?我可以看到一些表的例子在一些较旧的教程,但不是在Bootstrap网站本身。
我试图设置它,但我的页面中的表格几乎没有应用样式。
<table> <thead> <tr> <th>#</th> <th>First Name</th> <th>Last Name</th> <th>Language</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Some</td> <td>One</td> <td>English</td> </tr> <tr> <td>2</td> <td>Joe</td> <td>Sixpack</td> <td>English</td> </tr> </tbody> </table>
我需要申请什么课程?
解决方法
Bootstrap提供各种表格样式。有关文档和示例,请查看
Base CSS – Tables。
下面的样式给出了很好看的表:
<table class="table table-striped table-bordered table-condensed"> ... </table>