HTML Line Left
From w3cyberlearnings
Contents |
HTML - LINE LEFT
Create Line in the left side of the box by using the CSS.
HTML - Syntax LINE LEFT
<style> #testtt { border-left: thick double #00F; width:400px; height:400px; background-color: burlywood; } </style>
Example TRY-IT
<!DOCTYPE html> <html> <head> <title>left</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style> #testtt { border-left: thick double #00F; width:400px; height:400px; background-color: burlywood; } </style> </head> <body> <div id="testtt"> Horizontal line at left </div> </body> </html>
Related Links
HTML LINES
- HTML - LINE TOP
- HTML - LINE Bottom
- HTML - LINE Left
- HTML - LINE Right