Skip to content
On this page

CSS 相关

用 CSS 画一个三角形

css
.triangle {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top: 80px solid steelblue;
}