最佳答案
有没有人知道是否可以在带 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>
我需要申请哪些课程?