Horje
bootstrap table hover Code Example
bootstrap table hover
<TABLE class="w3-table w3-striped w3-bordered w3-border w3-white" class="table table-hover">
  <thead>
    <tr>
      <th scope="col">#</th>
      <th scope="col">First</th>
      <th scope="col">Last</th>
      <th scope="col">Handle</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
  </tbody>
</table>
bootstrap table dense
<!-- BOOTSTRAP V3 -->
<TABLE class="w3-table w3-striped w3-bordered w3-border w3-white" class="table table-condensed">
  ...
</table>
<!-- BOOTSTRAP v4 -->
<TABLE class="w3-table w3-striped w3-bordered w3-border w3-white" class="table table-sm">
  ...
</table>
table bootstrap with scrool
<div style="height: 600px;overflow: scroll;">
<!-- change height to increase the number of visible row  -->
	<div style="overflow-x:auto;">
<TABLE class="w3-table w3-striped w3-bordered w3-border w3-white"></table>
</div>
compact table bootstrap
Condensed Table
The .table-condensed class makes a table more compact by cutting cell padding in half




Html

Related
html align text right Code Example html align text right Code Example
salesforce aura toggle input Code Example salesforce aura toggle input Code Example
internet and intranet Code Example internet and intranet Code Example
html form please fill out this field Code Example html form please fill out this field Code Example
keywords html Code Example keywords html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8