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