【发布时间】:2016-08-23 17:30:47
【问题描述】:
500px 的边框是固定的。如何让它响应?它位于 .page1::before 区域。
.page1{
width:100%;
height:auto;
clear:both;
padding:90px 0 40px 0;
background-color:#0D9DDA;
position:relative;
}
.page1::before{
content:"";
width:0;
height:0;
display:block;
border-width:80px 500px 0px;
border-style:solid;
border-color:#0D9DDA transparent transparent ;
position:absolute;
top:100%;
left:0;
z-index:5;
}
<div class="page1"></div>
【问题讨论】:
-
基本上..不带边框...倾斜的伪元素、SVG 或其他东西。我确定这已经出现过,请尝试在 SO 上更加努力地搜索。
标签: html css css-shapes