Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> h1, p, div { padding: 10px; } h1 { border-left: 5px solid #8ebf42; } p { border-left: 4px dotted #1c87c9; } div { border-left: thick double #666; } </style> </head> <body> <h1>A heading with a solid green left border</h1> <p>A heading with a dotted blue left border.</p> <div>A div element with a thick double left border.</div> </body> </html>