CSS绘画三角形

本案例使用CSS绘画了一个三角形的图案。

预览演示地址:https://tympanus.net/codrops-playground/SaraSoueidan/kFTn9yJk/editor
将下面的代码复制到演示地址对应位置即可查看效果


<div class="container">
  <div class="element">div>
div>
/*css*/
body {
  background-color: #F5F5F5;
  color: #555;
  font-size: 1.1em;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
  margin: 40px auto;
  max-width: 700px;
}
.element {
        width: 0px;
    height: 0px;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom:100px solid #707070;

}

你可能感兴趣的:(css)