Search
 
SCRIPT & CODE EXAMPLE
 

HTML

div table bootstrap 4

<table class="table table-striped 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 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

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

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 :: html title tag 
Html :: negrita htm 
Html :: font jrxml 
Html :: laravel vue error handling 
Html :: html5 exmaple 
Html :: what is the meta tag in html 
Html :: <form action="https://www.google.com/search" <input type="text" name="q" <input type="submit" value="search" </form 
Html :: emmet edit true or false sublime text 
Html :: <!DOCTYPE html eslint error 
Html :: telerik export to excel with leading zero 
Html :: remark asp markup 
Html :: how to append a variable to html 
Html :: alt meaning in html 
Html :: react uncontrolled input initial value 
Html :: Javascript to select td element that was clicked in a table 
Html :: one side toggle in bootstrap 
Html :: button animation 
Html :: node js barcode generator 
Html :: best slider library 
Html :: html confirm box making text bold 
Html :: floating modal bootstrap 
Html :: how link back to home page html without index 
Html :: Horizontal line with text in middle word in HTML 
Html :: vmware workstation ubuntu 19.04 
Html :: get all html element data using angular 
Html :: textarea with border qml 
Html :: css without separate file 
Html :: html code 
Html :: shortcut to open vscode html page in chrome 
Html :: compile haml to html 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =