Triangle

Trick css pour faire des triangles

HTML

<div class="cercle"></div>

CSS

.cercle {
 width: 50px;
 height: 50px;
 background-color: #5697DB;
 border: 1px solid #5697DB;
  -webkit-border-radius: 25px;
 -khtml-border-radius: 25px;
 -moz-border-radius: 25px;
 border-radius: 25px;
}