我想用一个重复的三角形来装饰我的页面底部。图片显示一个三角形,但我想填充整个水平 div。
到目前为止我得到的截图:http: //i.stack.imgur.com/JJA6D.png
<div class="container triangle"> </div>
.triangle {
width: 0px;
height: 0px;
border-style: solid;
border-width: 15px 15px 0 15px;
border-color: #c2cf31 transparent transparent transparent;
background-color: white;
}
这是可能的还是我必须使用 img 作为背景?
感谢您的任何帮助。