CSS outline-width property
Usage
Specifies the width of an element's outline. Not supported by many browsers.
Values
- thin
- medium - default
- thick
- [length] - specifies an exact outline width
Example
Code:
p {
outline-width: thick;
}
p {
outline-width: 3px;
}