Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 236 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 236 Bytes

用纯 CSS 创建一个三角形

#demo {
  width: 0;
  height: 0;
  border-width: 20;
  border-style: "solid";
  border-color: transparent transparent red transparent;
}

原理是相邻边框连接处是均分的原理。