Advertisement
here2share

HTML inherited left margin

Aug 16th, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div.container {
  6.     border: 1px solid red;
  7.     margin-left: 50px;
  8. }
  9.  
  10. p.one {
  11.     margin-left: inherit;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16.  
  17. <h2>Use of the inherit value</h2>
  18. <p>Let the left margin be inherited from the parent element:</p>
  19.  
  20. <div class="container">
  21. <p class="one">This is a paragraph with an inherited left margin (from the div element).</p>
  22. </div>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement