HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border-style: solid; padding:10px; } #point{ border-left-color: red; } #point1{ border-left-color: transparent; } </style> </head> <body> <h1>CSS border-left-color Property</h1> <h2>border-left-color: red;</h2> <div id="point"> This is div container. </div> <h2>border-left-color: transparent;</h2> <div id="point1"> This is div container. </div> </body> </html>
OUTPUT
×

Save as Private