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