ShapeYourPath
(current)
Run Code
Live Code Editor- materialize CSS Text Align Right
Source Code
<!DOCTYPE html> <html lang="en"> <head> <!--Import Google Icon Font--> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> <!--Import materialize.css--> <!-- Compiled and minified CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" /> <!--Let browser know website is optimized for mobile--> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content=""> <title>materialize CSS Text Align Right</title> <style type="text/css"> p { font-size: 18px; } h1{ font-size: 28px; } .custom-padding { padding: 20px 0px; } </style> </head> <body> <h1 class="center-align">Materialize CSS Text Align Right</h1> <p class="center-align"> To align text in the right direction, add .right-align class to the HTML element base class. </p> <div class="container teal custom-padding"> <h5 class="right-align white-text">This should be right aligned</h5> </div> <!-- Compiled and minified JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> </body> </html>
Output :
Running