我想讓背景模糊。但我想模糊不適用於header
,而是對每個人重複模糊images
CSS - 在背景大小級別模糊背景而不是容器
這可能嗎?
https://jsfiddle.net/9zphnLn5/
.header {
width: 100%;
padding-top: 40px;
min-height: 135px;
padding-bottom: 0px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.header:before {
content: "";
position: fixed;
left: 0;
right: 0;
z-index: -1;
background-image:url('https://graph.facebook.com/311194819319371/picture?type=small');
width: 500px;
height: 200px;
-webkit-filter: blur(5px);
margin:auto;
}
.header > img {
max-width:300px;
max-height:150px;
}
<div class="header">
<img src="https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/18920203_10155138319170250_8020114684159382803_n.jpg?oh=744adfdc78b6581fa999f0c498889e05&oe=599D7A74" alt="Cover picture "></div>
基礎上2箇中給出答案,這可以在超過1分的方式進行解釋,所以你可以顯示預期輸出的圖紙,並解釋_repeated images_意思。 – LGSon
我添加了兩張照片。第二個是「中間渲染」。第一個是我想要的「最終渲染」。重要的是我想避免手動增加img。 –
更新了我的答案。請對此進行評論以澄清缺失或需要調整的內容 – LGSon