Advertisement
here2share

HTML styling lists with colors

Aug 16th, 2016
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. li {
  6.     padding-left: 15px;
  7. }
  8. ol {
  9.     background: #ff9999;
  10.     padding: 20px;
  11. }
  12.  
  13. ul {
  14.     background: #3399ff;
  15.     padding: 20px;
  16. }
  17.  
  18. ol li {
  19.     background: #ffe5e5;
  20.     margin-left: 25px;
  21. }
  22.  
  23. ul li {
  24.     background: #cce5ff;
  25.     margin: 5px;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30.  
  31. <h1>Styling Lists With Colors:</h1>
  32.  
  33. <ol>
  34.   <li>Coffee</li>
  35.   <li>Tea</li>
  36.   <li>Coca Cola</li>
  37. </ol>
  38.  
  39. <ul>
  40.   <li>Coffee</li>
  41.   <li>Tea</li>
  42.   <li>Coca Cola</li>
  43. </ul>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement