htmlcss

The outline-width property is used in CSS and certain HTML elements. It specifies the thickness of the outline around the selected object, rendering each side the same as the others.


Values

HTML example:

<span style="outline:solid medium;">Outline this text</span>

That produces: Outline this text


CSS example:

h1 {
    outline: solid medium;
}