単純な問題
目標:ボディの背景色が透けて見えるように、境界線(左右)を完全に透明にします。
試行: http: //jsfiddle.net/ZRQmY/
<html>
<body>
<div id="wrap">
<div class="trap">
Make the white borders transparent, so when I change the background color the background color will be seen through the borders.
I've tried rgb() with opacity but no luck
</div>
<div class="trap2">
This is what I'd like but I'm setting the border = bg color;
</div>
</div>
</body>
</html>
CSS
body {background:#eee;}
#wrap {padding:50px;}
.trap {
width:350px;
background: rgb(238, 238, 238);
border-right: 30px solid transparent;
border-left: 30px solid transparent;
border-bottom: 30px solid rgb(216, 199, 143);
}
.trap2 {
width:350px;
margin-top:100px;
background: rgb(238, 238, 238);
border-right: 30px solid #fff;
border-left: 30px solid #fff;
border-bottom: 30px solid rgb(216, 199, 143);
}
私は特定の問題に役立たないように多くの回避策を試しました。
バッグにトリックが残っていますか?