CSS - color de contorno

Descripción

La propiedad outline-color establece el color de un contorno alrededor de un elemento.

Valores posibles

  • color - Cualquier valor de color válido.

  • invert - El contorno realiza una inversión de color del área donde se dibuja.

Se aplica a

Todos los elementos HTML.

Sintaxis DOM

object.style.outlineColor = "red";

Ejemplo

Aquí está el ejemplo:

<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>

Esto producirá el siguiente resultado: