Online Html Editor

<html> <head> <style> div{ padding: 10px; } .first{ border-bottom-style: solid; border-bottom-width: 7px; } .second{ border: 5px solid; border-bottom-width: 10px; } </style> </head> <body> <h1>Border Bottom Width Property</h1> <div class="first">Only border bottom set</div> <br> <div class="second">Overriding defualt border values</div> <p><strong>Note: </strong> Border Style must be specified for setting border width</p> </body> </html>