Guest User

Untitled

a guest
Sep 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <style>
  2. .parent {
  3. font-size: 20px;
  4. }
  5. .child {
  6. font-size: 2em;
  7. }
  8. .para {
  9. font-size: 12px;
  10. }
  11. </style>
  12. <div class="parent">
  13. <p> This is a parent paragraph.</p>
  14. <div class="child">
  15. <p> This is a child paragraph.</p>
  16. </div>
  17. <p class="para"> The size of this paragraph is not affected by parent size.</p>
  18. </div>
Add Comment
Please, Sign In to add comment