CSS border bottom style is used to set the style of the bottom border of an HTML element.
Syntax
1 |
border-bottom-style: specify style here; |
1 2 3 4 5 6 7 8 9 10 11 12 |
<style> .div-border{ border-bottom-width:2px; border-bottom-style:solid; border-bottom-color:#000; } </style> <div class="div-border"> <p>This is the example to show the style of the bottom border.</p> </div> </body> </html> |
Output
This is the example to show the style of the bottom border.
CSS border bottom style values list
Sr. No. | value | Description |
---|---|---|
1 | border-style | Used to give style for border. The value for this can be from none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset. Check CSS border style for more detail. |
2 | initial | Used to define as the property initial value. |
3 | inherit | Used to define the computed value of property on the elements parent. |