#inherit {
  border: inherit;
}

#initial {
  border: initial;
}

#dotted {
  border-style: dotted;
}

#solid {
  border-style: solid;
}

#double {
  border-style: double;
  background-color: yellow;
}

#groove {
  border-style: groove;
}

#ridge {
  border-style: ridge;
}

#inset {
   border-style: inset;
   background-color: darkorange;
}

#outset {
  border-style: outset;
}

#wat {
  border-style: dashed;
  border-color: magenta;
}

#ZEZE {
  border-style: double;
    background-color: aqua;
    
}

#FEFE {
  border-style: ridge;
  background-color: darkcyan;
}

#PP {
  border-style: dotted;
  border-bottom-color: yellow;
  border-top-color: blue;
  border-left-color: green;
  border-right-color: red;
  border-width: thick;
  
}
