1
如何重現此效果?具有漸變效果的背景圖像
如果圖像是背景與gradient
並在其中有一個linear
分度,內容透明,內容不繼承主div
的linear gradient
。
到目前爲止,我這樣做:
.wrapper_background{
\t width: 500px;
\t height: 300px;
\t background-image: url('http://www.cvc.com.br/media/6016178/galeria-salvador-elevador_lacerda_017-credito-divulga%C3%A7%C3%A3ocvc.jpg');
\t background-size: cover;
\t background-position: center; \t
-webkit-box-shadow: inset 0 0 10px 40px rgba(0,0,0,0.8);
\t box-shadow: inset 0 0 10px 40px rgba(0,0,0,0.8); \t
\t position: relative;
\t margin: 50px 0px 80px 0px;
\t left: 50%;
\t transform: translateX(-50%); \t
\t display: flex;
\t align-items: center;
\t justify-content: center;*/ \t
\t
}
.content{
\t width: 80%;
\t height: 80%;
\t border-radius: 25px; \t
\t overflow: hidden;
\t border: 1px solid black;
\t background-color: transparent;
}
<div class="wrapper_background">
\t <div class="content"> \t \t
\t </div>
</div>
我試圖用box-shadow
,但只允許(據我所知),相應地調整大小。我相信有更好的方法來做到這一點。
有什麼更好的方法來做到這一點?
不需要額外的元素。檢查這個小提琴。 https://jsfiddle.net/3jynLgs8/1/。順便說一句,OP的解釋中邊緣具有邊界半徑。 –
Woooow!韋裏很簡單,我正在努力。非常感謝! @Mr_Green你的例子很簡單。在元素本身。 – Zkk