“faire un cercle dans CSS” Réponses codées

cercle CSS


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

faire un cercle dans CSS

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

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

Circle CSS

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

Comment créer un cercle avec CSS

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

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

Dessiner un cercle avec CSS

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

cercle CSS

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

Réponses similaires à “faire un cercle dans CSS”

Questions similaires à “faire un cercle dans CSS”

Plus de réponses similaires à “faire un cercle dans CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code