Descrição
A propriedade cor de contorno define a cor de um contorno ao redor de um elemento.
Valores possíveis
Aplica-se a
Todos os elementos HTML.
Sintaxe DOM
object.style.outlineColor = "red";
Exemplo
Aqui está o exemplo -
<html>
<head>
</head>
<body>
<p style = "outline-width:thin; outline-style:solid;outline-color:red">
This text is having thin solid red outline.
</p>
<br />
<p style = "outline-width:thick; outline-style:dashed;outline-color:#009900">
This text is having thick dashed green outline.
</p>
<br />
<p style = "outline-width:5px;outline-style:dotted;outline-color:rgb(13,33,232)">
This text is having 5x dotted blue outline.
</p>
</body>
</html>
Isso produzirá o seguinte resultado -