BORDER Property In CSS
border Property in CSS
border property Used as a shorthand to declare the border properties when all four borders will have the same appearance.
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): border-width border-style border-color
Examplediv { border:1px double green; }
div { border:thin solid #00FF00; }