Advertisement
here2share

HTML border-left property and left-padding

Aug 14th, 2016
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p {
  6.     padding-left: 50px;
  7.     border-left: 6px solid red;
  8.     background-color: lightgrey;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13.  
  14. <h2>The border-left Property</h2>
  15. <p>This property is a shorthand property for border-left-width,<br>border-left-style, and border-left-color.</p>
  16.  
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement