伙计们。我在网站上工作,打算做这样的事情:enter image description here
现在我有了这个形状的一半
<div id="block"> </div>
#block {
width: 100%;
height: 400px;
background: #ccc;
position: relative;
margin-top: 100px;
}
#block:before {
content: '';
position: absolute;
top: 0;
left: 0;
border-top: 80px solid #fff;
border-right: 80px solid #ccc;
width: 400px;
}
看起来是这样的:enter image description here我该怎么做才能把它画得更远?比如把上面的另一条线移到右边和下面?谢谢。
1条答案
按热度按时间bxgwgixi1#
你可以找到你的答案,你也可以调整使用变换css。