Les couleurs

ComplémentÉditeur

border-top-color :
border-right-color :
border-bottom-color :
border-left-color :

Border Color

DéfinitionCouleur

1
.div1 { border-top-color: red;} // haut
2
.div2 { border-color: red green;} // haut, bas et droite, gauche
3
.div3 { border-color: red green pink blue;} // haut, droite, bas, gauche

Exemple :

1
div {
2
  width:100px;
3
  height: 100px;
4
  border-style: solid;
5
  border-color: red green pink blue;
6
  border-width: 15px;
7
}
color