ShapeYourPath
(current)
Run Code
Live Code Editor-Materialize Table Highlight
Source Code
<!DOCTYPE html> <html lang="en"> <head> <title>Materialize Table Highlight</title> <meta name="viewport" content="width = device-width, initial-scale = 1" /> <meta name="robots" content="noindex, nofollow"> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" /> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> <style type="text/css"> h2{font-size: 28px;} </style> </head> <body> <h1 class="center-align">Materialize Highlight Table Example</h1> <table class="highlight responsive-table"> <thead> <tr> <th>Name</th> <th>Mobile</th> <th>Email ID</th> </tr> </thead> <tbody> <tr> <td>John Smith</td> <td>7894xxxx45</td> <td>johnsmith@gmail.com</td> </tr> <tr> <td>Jane</td> <td>78xx56xx78</td> <td>jane@gmail.com</td> </tr> </tbody> </table> </body> </html>
Output :
Running
MATERIALIZE-TUTORIAL
MATERIALIZE-TABLE-RESPONSIVE OTHER EXAMPLES
Materialize Borderless Table Example
Materialize Table Bordered Example
Materialize Striped Table Example
Materialize Table Highlight Example
Materialize Centered Table Example
Materialize CSS Responsive Table Example