Advertisement
samuelaguilera

Indentation test

Sep 5th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Indentation test</title>
  6. <style>
  7. * {
  8.     margin: 0;
  9.     padding: 0;
  10.     font-size: 52px;
  11. }
  12. .bla {
  13.     width: 100%;
  14.     text-align: right;
  15.     letter-spacing: 20px;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20.  
  21. <div class="bla">
  22.     Indented<br>
  23.     Not-indented
  24. </div>
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement