Prev Demo
CSS3
>
Border-Left-Width Property
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> p { border-style: solid; border-left-width:20px; } div { border-style: double; border-left-width:10px; } </style> <p>This element having border left width 20px.</p> <div>This element having border left width 10px.</div> </body> </html>
Note: We DO NOT save your trial code in our database.
Output