css outline

An outline is a line that is drawn around elements (outside the borders) to make the element “stand out”.

The outline shorthand property sets all the outline properties in one declaration.

The properties that can be set, are (in order): outline-color, outline-style, outline-width.

 #x:hover
{
outline:#00FF00 dotted thick;
}