Search
 
SCRIPT & CODE EXAMPLE
 

HTML

bootstrap table hover

<table 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>
Comment

bootstrap responsive table

<div class="table-responsive">
  <table class="table">
  <caption>List of users</caption>
  <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>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>
</div>
Comment

table bootstrap with scrool

<div style="height: 600px;overflow: scroll;">
<!-- change height to increase the number of visible row  -->
	<table></table>
</div>
Comment

bootstrap table

<table class="table table-sm table-dark">
  <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>
    <tr>
      <th scope="row">3</th>
      <td colspan="2">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>
Comment

Bootstrap table small

<table class="table table-sm">
  ...
</table>
Comment

Bootstrap Table

. . .
       <div class="row row-content">
            <div class="col-sm-9">
                <h2>Facts &amp; Figures</h2>
                <div class="table-responsive">
                    <table class="table table-striped">
                        <thead>
                            <tr class="bg-primary text-light">
                                <th></th>
                                <th>2016</th>
                                <th>2017</th>
                                <th>2018</th>
                            </tr>
                        </thead>
                        <tbody class="table-primary">
                            <tr>
                                <th>Staff Wilderness Experts</th>
                                <td>10</td>
                                <td>20</td>
                                <td>40</td>
                            </tr>
                            <tr>
                                <th>New Campers</th>
                                <td>256</td>
                                <td>1,280</td>
                                <td>5,360</td>
                            </tr>
                            <tr>
                                <th>Square Miles Covered</th>
                                <td>101,325</td>
                                <td>423,000</td>
                                <td>~3,000,000,000</td>
                            </tr>
                        </tbody>
                    </table>
                </div>                
            </div>
       </div> 
. . .
Comment

bootstrap table responsive

<table class="table table-responsive">
  ...
</table>
Comment

bootstrap table

<table class="table">
 <thead>
 <tr>     <th>Head 1</th>	    <th>Head 2</th>      <th>Head 3</th>   </tr>
 </thead>
  
 <tbody>  
 <tr>      <td>cell</td>		  <td>cell</td>		 <td>cell</td>    </tr>
 <tr>      <td>cell</td>		  <td>cell</td>		 <td>cell</td>    </tr>
 </tbody>
  
 <tfoot>
 <tr>     <th>Footer 1</th> 	<th>Footer 2</th>	<th>Footer 3</th>	</tr>
 </tfoot>
</table>
Comment

bootstrap table

<table class="table table-hover table-dark">
  <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>
    <tr>
      <th scope="row">3</th>
      <td colspan="2">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>
Comment

striped table bootstrap

// Add the table and table striped class from bootstrap
<table class="table table-striped">
Comment

Bootsrap table

<table class="table table-bordered border-primary">
  ...
</table>
Comment

bootstrap tables

<table class="table">
  <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 colspan="3>Mark</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td colspan="3>Jacob</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td colspan="3">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>
Comment

bootstrap table

<table class="table table-dark table-hover">
  ...
</table>
Comment

bootstrap table

<link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.18.3/dist/bootstrap-table.min.css">
Comment

Boostrap Table

<table class="table">
  <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>
    <tr>
      <th scope="row">3</th>
      <td colspan="2">Larry the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>
Comment

bootstrap table

<table class="table table-hover">
  ...
</table>
Comment

PREVIOUS NEXT
Code Example
Html :: xpath equals 
Html :: javascript popup form 
Html :: nicescroll cdn 
Html :: spaces html 
Html :: svelte for loop for index 
Html :: html <br tag 
Html :: html + sign 
Html :: how to pass the current url to beautiful soup html 
Html :: html textarea along with cursor position set 
Html :: bootstrap 4 text color 
Html :: relative path 
Html :: angular material disable radio button 
Html :: link mui 
Html :: html how to play gifs 
Html :: enable html button 
Html :: ionic format date 
Html :: react hooks html imput on change 
Html :: angular foreach html 
Html :: label input html 
Html :: skip line html 
Html :: how to put a name on a fieldset 
Html :: connect html to mysql database 
Html :: using local image in html meta tag 
Html :: date month year dropdown html 
Html :: coreui margin right 
Html :: was blocked because of a disallowed MIME type (“text/html”). 
Html :: html include html page 
Html :: how to set timeout for a div tag in html 
Html :: html <strong 
Html :: how to create js code 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =