Search
 
SCRIPT & CODE EXAMPLE
 

HTML

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

table in bootstrap 4

<table class="table 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>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</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

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

Bootsrap table

<table class="table table-bordered border-primary">
  ...
</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

getbootstrap.com table

<nav class="navbar navbar-light bg-light">
  <span class="navbar-text">
    Navbar text with an inline element
  </span>
</nav>
Comment

PREVIOUS NEXT
Code Example
Html :: <a href="#"<div class="fab fa-instagram"</i</a 
Html :: excel auto tage with date and time 
Html :: html form generator 
Html :: html entity for $ 
Html :: html div horizontal 
Html :: HTML - The Head Element 
Html :: Formatting code with <pre tag in React and JSX 
Html :: image background drawable android studio 
Html :: icon inside input 
Html :: flexbox column layout 
Html :: btn-default class in bootstrap 4 
Html :: what is hot crypto wallet 
Html :: what is tr tag used for 
Html :: horizontal line 
Html :: html legend 
Html :: empty elements in html 
Html :: chatbot html 
Html :: type time html returns 24 hour time change to 12 hour 
Html :: html section tag 
Html :: html title attribute 
Html :: html heading tag 
Html :: openGraph 4 
Html :: python remove html from a list item 
Html :: open mail in html 
Html :: store html line break in database 
Html :: react router preventing assets from being served 
Html :: abanner html code 
Html :: magento 2 theme claue pagination not showing up 
Html :: what is class attribute in form 
Html :: js cookie github 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =