私は次の斜めのdivを作成しようとしています。私は下の形をほぼ達成しましたが、下の形は下の形が正しい方向に傾いていません。どうすれば修正できますか?斜め上と下のCSS
形状添付
http://jsfiddle.net//fgdcq3qp/
CSS
.slanted {
background: red;
box-sizing: border-box;
height: 40vh;
width: 100%;
position: relative;
padding: 20px;
}
.slanted:before {
content: "";
background: red;
height: 40px;
transform: skewY(2deg);
position: absolute;
left: 0;
right: 0;
z-index: -1;
}
.slanted:after {
content: "";
background: red;
height: 40px;
transform: skewY(1deg);
position: absolute;
left: 0;
right: 0;
z-index: -1;
}
.slanted:before{
top: -20px;
}
.slanted:after {
bottom: -30px;
}
HTML
<div class="slanted">
<h2>Hello World!</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis et debitis pariatur perferendis adipisci doloribus aspernatur ea quo illum a.</p>
あなたの下の斜面は、私はあなたがIE5.5が人気があったとき、エリック・マイヤーは、このバックどうやったのかを見てそれを取る負DEGS – Huangism
にする必要がありますか? http://meyerweb.com/eric/css/edge/slantastic/demo2.html –
ありがとう:)負の値は正しかった:) – user1673498