border-bottom-styleSet the bottom border style of the element. Note: You must define a border width if you want the border to display. Using border-style by itself will not draw a border. Value | Description | solid | A simple solid border style. | double | A double border style. | groove | A grooved border style. | dotted | A dotted border style. | dashed | A dashed border style. | inset | An inset border style. | outset | An outset border style. | ridge | A ridged border style. | hidden | A hidden border style. This will make the border invisible. |
Code:p { border-bottom-style: solid;
border-width: 3px; } Display:This element has a border-bottom-style defined. Compatibility Issues:IE 5.0 - Does not support "dotted" or "dashed" borders. |