CSS outline property
Usage
Specifies an outline for an element. Similar to border but it does not affect element size or position. Not supported by many browsers.
Values
outline-color,outline-style, andoutline-widthvalues
Example
Code:
p {
outline: blue solid thin;
}