“Faça um círculo no CSS” Respostas de código

círculo css


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

Faça um círculo no CSS

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

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

Círculo CSS

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

Como criar um círculo com CSS

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

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

desenhando um círculo com CSS

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

círculo css

#circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
Insert_Name_Here

Respostas semelhantes a “Faça um círculo no CSS”

Perguntas semelhantes a “Faça um círculo no CSS”

Mais respostas relacionadas para “Faça um círculo no CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código