Guest User

Untitled

a guest
Nov 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.49 KB | None | 0 0
  1. OO Approach:
  2.  
  3. .base-h1-style {margin: 10px; padding: 5px; color: #333333; font-size: 12px;}
  4.  
  5. #title-home {color: green;}
  6. #title-content {color: red;}
  7. #title-product {color: blue; font-size: 14px;}
  8.  
  9.  
  10. Pragmatic Approach:
  11.  
  12. #title-home {margin: 10px; padding: 5px; color: #333333; font-size: 12px; color: green;}
  13. #title-content {margin: 10px; padding: 5px; color: #333333; font-size: 12px; color: blue;}
  14. #title-product {margin: 10px; padding: 5px; color: #333333; font-size: 14px; color: red;}
Add Comment
Please, Sign In to add comment