Guest User

Untitled

a guest
May 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. li
  5. {
  6. font-size: 0.85em;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <ul>
  12. <li>Level 1 item
  13. <ul>
  14. <li>Level 2 item
  15. <ul>
  16. <li>Level 3 item</li>
  17. </ul>
  18. </li>
  19. </ul>
  20. </li>
  21. </ul>
  22. </body>
  23. </html>
  24.  
  25. li li {font-size: 100%;}
  26.  
  27. body > ul { font-size: 0.85em; }
  28.  
  29. li { font-size: 0.85em; }
  30. li li { font-size: 1em; }
  31.  
  32. <div id="navigation">
  33. <ul>
  34. <li>...</li>
  35. <li>
  36. <ul><li>...</li><li>...</li></ul>
  37. </li>
  38. </ul>
  39. </div>
  40.  
  41. #navigation { font-size: 0.85em; }
Add Comment
Please, Sign In to add comment