用css做一个三角形

65 阅读1分钟
  <style>
    div {
      width: 0;
      height: 0;
      border-top: 20px solid red;
      border-bottom: 20px solid transparent;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
    }
  </style>
</head>

<body>
  <div></div>
</body>

实现效果

image.png