选张好看的背景啊~
毛玻璃
html
<div id="bg">
<section>
人可以向往流浪,实践流浪,但流浪是个多么美好的词汇哦,无需和落魄挂钩,也不应该和乞讨画等号,
它本应跟着你自身的能力和魅力合二为一。真正的穷游者皆为能挣多少钱走多远的路,有多广的人脉行多远的天涯。
</section>
</div>
css
*{margin:0;}
#bg{
width: 600px;
height: 400px;
border-radius: 4px;
margin: 50px auto;
background-image: url('1.jpg');
background-size: cover;
position: relative;
}
section{
width: 400px;
height: 220px;
border-radius: 4px;
padding: 30px;
line-height: 30px;
color: #E6E6E6;
font-size: 15px;
position: absolute;
margin: 50px auto;
left: 70px;
z-index: 1;
background-size: cover;
overflow: hidden;
}
section:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background-image: inherit;
background-size: cover;
background-position: center center;
filter: blur(8px); //这个属性可能需要做浏览器兼容处理(-webkit-, -moz-, -ms-, -o-)
}
网友评论