Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>{{ title }}</title>
  5.     <style>
  6.       .dashboard {
  7.         width: 100%;
  8.         height: 10%;
  9.         min-height: 50px;
  10.         position: absolute;
  11.         text-align: justify;
  12.       }
  13.       .dashboard li {
  14.         list-style: none;
  15.         float: left;
  16.         display: flex;
  17.       }
  18.     </style>
  19.   </head>
  20.   <body>
  21.     <div class="dashboard">
  22.       <li>FIRST</li>
  23.       <li>SECOND</li>
  24.       <li>THIRD</li>
  25.     </dashboard>
  26.   </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement