BORDER-BOTTOM Property In CSS
border-bottom Property in CSS
border-bottom property Used as a shorthand property to set all the border-bottom properties at once.
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): border-bottom-width border-bottom-style border-bottom-color
Examplediv { border-bottom:2px solid green; }
div { border-bottom:thick double #00FF00; }