“Crear círculo en CSS” Código de respuesta

círculo CSS


    #circle {
      width: 100px;
      height: 100px;
      background: red;
      border-radius: 50%
    }
  
Combative Cowfish

Haz un círculo en CSS

div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/*
	note: 
	should width = height
*/
Fair Flatworm

CSS círculo

#circle {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%
}
Dayanaohhnana

Cómo crear un círculo con CSS

<div id="circle">
</div>

#circle {
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%
}
Anthony Smith

Dibujo un círculo con CSS

#it is the border-radius:50; that makes the circle.
.MyCircle{
  width:100px;
  height:100px;
  background-color:blue;
  border-radius:50px;
}
VinCoD

Crear círculo en CSS

#div2{
    width: 150px;
    height: 150px;
    border: 3px solid #05ffb0;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
}
Glorious Gnat

Respuestas similares a “Crear círculo en CSS”

Preguntas similares a “Crear círculo en CSS”

Más respuestas relacionadas con “Crear círculo en CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código