Bootstrap Add Text Align in Table Column
home
Run
screen_rotation
fullscreen
cloud_download
<html> <head> <title>Bootstrap Tutorial</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <table class='table'> <tr> <th class="text-left">Text left.</th> <th class="text-center">Text center.</th> <th class="text-right">Text right.</th> </tr> <tr> <td class="text-left">Text left.</td> <td class="text-center">Text center.</td> <td class="text-right">Text right.</td> </tr> </table> </div> </div> </body> </html>
<html> <head> <title>Bootstrap Tutorial</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <table class='table'> <tr> <th class="text-left">Text left.</th> <th class="text-center">Text center.</th> <th class="text-right">Text right.</th> </tr> <tr> <td class="text-left">Text left.</td> <td class="text-center">Text center.</td> <td class="text-right">Text right.</td> </tr> </table> </div> </div> </body> </html>
Copyrights@tutorialsplane.com