Prev Demo
Table Condensed
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" /> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Table-condensed</h2> <p>Table-condensed is used to cut the cell padding in to the half </p> <table class=" table table-condensed"> <thead> <tr> <th>S.NO</th> <th>Name</th> <th>Details</th> <th>contact</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>dotnetfunda</td> <td>fundamentals of .NET</td> <td>support@dotnetfunda.com</td> </tr> <tr> <td>2</td> <td>techfunda</td> <td>online tutorials</td> <td>techfunda@gmail.com</td> </tbody> </table> </div> </body> </html>
Note: We DO NOT save your trial code in our database.
Output