“Cómo hacer un triángulo en CSS” Código de respuesta

hacer triángulo usando div

// css clip
<div id="triangle"></div>

#triangle {
	background-color: #003BDE;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	width: 100px;
	height: 100px;
}
Clumsy Cicada

Cómo hacer un triángulo en CSS

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

Triángulo CSS

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

Cómo crear una forma en CSS

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

Triángulo CSS

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

Haz un círculo en JavaScript

<!DOCTYPE html>
  <html>
  <head>
  <meta charset=utf-8 />
  <title>Draw a circle</title>
  </head>
  <body onload="draw();">
  <canvas id="circle" width="150" height="150"></canvas>
  </body>
  </html>
Homely Herring

Respuestas similares a “Cómo hacer un triángulo en CSS”

Preguntas similares a “Cómo hacer un triángulo en CSS”

Más respuestas relacionadas con “Cómo hacer un triángulo en CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código