忍着我這個......有點難以解釋。所以我試圖做的是有一段文字直接在它後面刪除一個div的背景。下面鏈接的圖像是Illustrator,現在我試圖找到HTML & CSS中的解決方案。要剪貼蒙版背景的文字
Illustrator screenshot of what I'm trying to accomplish
.grid-item {
position: relative;
width: 300px;
height: 200px;
padding: 5px;
}
.grid-container {
position: relative;
width: 100%;
height: 100%;
background-color: #eee;
}
.grid-container img {
position: absolute;
}
.grid-item-overlay {
position: absolute;
top: 5px;
left: 5px;
bottom: 5px;
right: 5px;
background-color: rgba(0,0,0,0.5);
}
span {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
transform: translate(-50%, -50%);
font-weight: 700;
font-family: sans-serif;
font-size: 40px;
text-align: center;
color: #fff;
}
<div class="grid-item">
<div class="grid-container">
<img src="https://unsplash.it/300/200/?random">
<div class="grid-item-overlay">
<span>Text Here</span>
</div>
</div>
</div>
的目的是爲具有跨度文本創建網格項疊加背景的透明遮罩。
我願意接受任何建議! :)
可是......你遇到麻煩,或者只是想我們能夠爲您解決? –
是的,試圖找到附加圖像的解決方案。 – Ross
我想你想讓我們「忍受」你。 [與你一起是完全不同的](http://english.stackexchange.com/q/1269)... –