Online Html Editor

<html> <head> <style> div{ padding: 10px; } .first{ border-bottom-style: solid; border-bottom-color: grey; } .second{ border: 5px solid; border-bottom-color: red; } </style> </head> <body> <h1>Border Bottom Color 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 color</p> </body> </html>