這是我的Html代碼。我想在標籤<table>
中添加兩個bootstrap屬性,例如(以表格爲邊界的&)。如何在html表標籤中添加兩個引導類屬性?
我想在表標記中使用這兩個類屬性 。
<table>
<thead>
<tr>
<th>Name</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>anmol</td>
<td>america</td>
</tr>
</tbody>
</table>
基本規則是:一個HTML標籤在'id'屬性中最多可以有一個id,但'class'屬性中可以有很多類(以空格分隔)。在你的情況下,「table-bordered」和「table-striped」是2個類名。 –