Cor da borda CSS


Índice

    Mostrar índice


Cor da borda CSS

A propriedade class="w3-codespan">border-color é usada para definir a cor das quatro bordas.

A cor pode ser definida por:

  • nome - especifique um nome de cor, como "vermelho"

  • HEX - especifique um valor HEX, como "#ff0000"

  • RGB - especifique um valor RGB, como "rgb(255,0,0)"

  • HSL - especifique um valor HSL, como "hsl(0, 100%, 50%)"

  • transparente

Nota: Se class="w3-codespan">border-color não estiver definido, ele herdará a cor do elemento.

Exemplo

Demonstração das diferentes cores das bordas:

p.one
{
   
border-style: solid;
   
border-color: red;
}

p.two
{
   
border-style: solid;
  border-color: green;
}
p.three {
  border-style: dotted;
  border-color: 
  blue;
}

Resultado:

Red border
Green border
Blue border

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-color: red;
}

p.two {
  border-style: solid;
  border-color: green;
} 

p.three {
  border-style: dotted;
  border-color: blue;
} 
</style>
</head>
<body>

<h2>The border-color Property</h2>
<p>This property specifies the color of the four borders:</p>

<p class="one">A solid red border</p>
<p class="two">A solid green border</p>
<p class="three">A dotted blue border</p>

<p><b>Note:</b> The "border-color" property does not work if it is used alone. Use the "border-style" property to set the borders first.</p>

</body>
</html>



Cores laterais específicas

A propriedade class="w3-codespan">border-color pode ter de um a quatro valores (para a borda superior, a borda direita, a borda inferior e a borda esquerda).

Exemplo

 p.one {
  border-style: solid;
  border-color: red green blue yellow; 
  /* red top, green right, blue bottom and yellow left */
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-color: red green blue yellow; /* red top, green right, blue bottom and yellow left */
}
</style>
</head>
<body>

<h2>The border-color Property</h2>
<p>The border-color property can have from one to four values (for the top border, right border, bottom border, and the left border):</p>

<p class="one">A solid multicolor border</p>

</body>
</html>




Valores hexadecimais

A cor da borda também pode ser especificada usando um valor hexadecimal (HEX):

Exemplo

 p.one {
  border-style: solid;
  border-color: #ff0000; /* red 
  */
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-color: #ff0000; /* red */
}

p.two {
  border-style: solid;
  border-color: #0000ff; /* blue */
}

p.three {
  border-style: solid;
  border-color: #bbbbbb; /* grey */
}
</style>
</head>
<body>

<h2>The border-color Property</h2>
<p>The color of the border can also be specified using a hexadecimal value (HEX):</p>

<p class="one">A solid red border</p>
<p class="two">A solid blue border</p>
<p class="three">A solid grey border</p>

</body>
</html>



Valores RGB

Ou usando valores RGB:

Exemplo

 p.one {
  border-style: solid;
  border-color: rgb(255, 0, 0); 
  /* red */
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-color: rgb(255, 0, 0); /* red */
}

p.two {
  border-style: solid;
  border-color: rgb(0, 0, 255); /* blue */
}

p.three {
  border-style: solid;
  border-color: rgb(187, 187, 187); /* grey */
}
</style>
</head>
<body>

<h2>The border-color Property</h2>
<p>The color of the border can also be specified using RGB values:</p>

<p class="one">A solid red border</p>
<p class="two">A solid blue border</p>
<p class="three">A solid grey border</p>

</body>
</html>



Valores HSL

Você também pode usar valores HSL:

Exemplo

 p.one {
  border-style: solid;
  border-color: hsl(0, 100%, 50%); 
  /* red */
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-color: hsl(0, 100%, 50%); /* red */
}

p.two {
  border-style: solid;
  border-color: hsl(240, 100%, 50%); /* blue */
}

p.three {
  border-style: solid;
  border-color: hsl(0, 0%, 73%); /* grey */
}
</style>
</head>
<body>

<h2>The border-color Property</h2>
<p>The color of the border can also be specified using HSL values:</p>

<p class="one">A solid red border</p>
<p class="two">A solid blue border</p>
<p class="three">A solid grey border</p>

</body>
</html>


Você pode aprender mais sobre valores HEX, RGB e HSL em nossos capítulos Cores CSS.