BORDER-TOP Property In CSS
border-top Property in CSS
border-top property Used as a shorthand property to set all the border-top 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-top-width border-top-style border-top-color
Examplediv { border-top:2px solid green; }
div { border-top:thick double #00FF00; }