“Cómo hacer una recursos humanos punteadas en CSS” Código de respuesta

Cómo crear una recursos humanos punteadas

/* you can put this line in your .css Change the width, 
border etc and colour to your liking*/

hr {
  width: 10%;
  border: 10px dotted;
  border-style: none none dotted;
  color: grey
}

Frail Flamingo

LIN discreto en CSS

hr {
  border:none;
  border-top:1px dashed #f00;
  color:#fff;
  background-color:#fff;
  height:1px;
  width:50%;
}
Brainy Booby

Cómo hacer una recursos humanos punteadas en CSS

/* hr {
  border:none;
  border-top:1px dotted #f00; 
  color:#fff;
  background-color:#fff;
  height:1px;
  width:50%;
} */
Hungry Hummingbird

Cómo hacer una recursos humanos punteadas en CSS

/*Here the syntax for border-style works clockwise therefore, the top has the value dotted
and the right has value assigned none and then comes the bottom and then finally the left*/

hr {
            border: 6px dotted;
            border-style: dotted none none none;
            height: 2px;
            width: 8%;
            color: grey;
            
            }
Siddevin

Respuestas similares a “Cómo hacer una recursos humanos punteadas en CSS”

Preguntas similares a “Cómo hacer una recursos humanos punteadas en CSS”

Más respuestas relacionadas con “Cómo hacer una recursos humanos punteadas en CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código