HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border-style: solid; } #point{ border-top-width: thin; } #point1{ border-top-width: medium; } #point2{ border-top-width: thick; } #point3{ border-top-width: 5px; } </style> </head> <body> <h1>CSS border-top-width Property</h1> <h2>border-top-width: thin;</h2> <div id="point"> This is div container. </div> <h2>border-top-width: medium;</h2> <div id="point1"> This is div container. </div> <h2>border-top-width: thick;</h2> <div id="point2"> This is div container. </div> <h2>border-top-width: 5px;</h2> <div id="point3"> This is div container. </div> </body> </html>
OUTPUT
×

Save as Private