css 生成三角形
Posted 清风叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 生成三角形相关的知识,希望对你有一定的参考价值。
1,生成有填充颜色的三角形
some-class {
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 40px solid red;
}
或者
some-class {
width: 0;
height: 0;
border-width: 20px;
border-style: solid;
border-color: transparent transparent red transparent;
}
2,生成没有颜色填充的三角形
some-class {
display:
width:
height:
border-color:
border-style:
border-width:
transform:
}
以上是关于css 生成三角形的主要内容,如果未能解决你的问题,请参考以下文章