我遇到角度边缘的问题,在div的底部,div将具有背景颜色或某种高度为100%的图像,所以基本上div会在底部倾斜...但是在较小的屏幕上它会调整大小并且所述div的高度变小而不是全高。有没有办法解决问题,在较小的屏幕上div变得太小了?
body {height:100%;}
.quote {
background: #41ade5;
position: relative;
z-index: 1;
height:100%;
}
.quote:after {
background: inherit;
content: '';
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
z-index: -1;
-webkit-backface-visibility: hidden;
}
.quote:after {
bottom: 0;
-webkit-transform: skewY(-1.5deg);
transform: skewY(-1.5deg);
-webkit-transform-origin: 100%;
transform-origin: 100%;
}
.quote {
color: #fff;
font-family: 'Fira Sans', sans-serif;
padding: 20% 20px;
text-align: center;
}
h1 {
font-size: 32px;
font-weight: 500;
}
p {
font-size: 14px;
font-weight: 300;
margin-top: 0.5em;
}
<div class="quote">
<h1>Angled Edges</h1>
<p>With 2 Pseudo Elements</p>
</div>