0
我一直在修補下面的代碼現在一段時間了,我似乎無法做我需要做的與Chrome和Firefox的支持。我的目標是讓圖像填充(覆蓋)SVG的整個區域。面具SVG與圖像
.trap-container {
position: relative;
width: 100%;
height: 200px;
}
.trap-container svg {
position: absolute;
}
.trap-content {
display: inline-block;
position: relative;
top: 10%;
height: 80%;
width: 100%;
bottom: 10%;
color: white;
}
<div class="trap-container">
<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none">
<polygon points="0,0 100,0 100,70 0,100">
</polygon>
</svg>
<div class="trap-content">Legal
</div>
</div>
哪種圖片..? –
參數爲了這個圖像︰https://i.imgur.com/WHnTGPB.jpg?1 – Simon
這將被放置在哪裏?作爲身體的「背景圖像」?您可以修改上面的代碼,以將圖像與您提供的URL一起包含。 –