“triangle CSS” Réponses codées

cercle CSS


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

Comment faire un triangle dans CSS

.triangle{
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid red;
  border-width:100px;
}
PerfectPass1

triangle CSS

#triangle {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid blue;
}
Gorgeous Gharial

Comment créer une forme dans CSS

div {
	clip-path: polygon(100% 100%, 100% 100%, 100% 100%)
}
Encouraging Elk

triangle CSS

#triangle-up {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid red;
}
Donald Abua

Réponses similaires à “triangle CSS”

Questions similaires à “triangle CSS”

Plus de réponses similaires à “triangle CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code