Advertisement
here2share

HTML text line-height

Aug 16th, 2016
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p.small {
  6.     line-height: 0.7;
  7. }
  8.  
  9. p.big {
  10.     line-height: 1.8;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15.  
  16. <p>
  17. This is a paragraph with a standard line-height.<br>
  18. The default line height in most browsers is about 110% to 120%.<br>
  19. </p>
  20.  
  21. <p class="small">
  22. This is a paragraph with a smaller line-height.<br>
  23. This is a paragraph with a smaller line-height.<br>
  24. </p>
  25.  
  26. <p class="big">
  27. This is a paragraph with a bigger line-height.<br>
  28. This is a paragraph with a bigger line-height.<br>
  29. </p>
  30.  
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement