htmlcss

The outline-color property is used in CSS and certain HTML elements. It specifies the color of the outline of the selected object.


Values


HTML example:

<span style="outline:medium solid red;">Outline the text.</span>

That produces: Outline the text.


CSS example:

h1 {
    outline:medium solid red;
}