使CSS背景图片变暗?

使CSS背景图片变暗?,第1张

使CSS背景图片变暗?

您可以将CSS3 LinearGradient属性与背景图像一起使用,如下所示:

#landing-wrapper {    display:table;    width:100%;    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('landingpagepic.jpg');    background-position:center top;    height:350px;}

这是一个演示

#landing-wrapper {  display: table;  width: 100%;  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('http://placehold.it/350x150');  background-position: center top;  height: 350px;  color: white;}<div id="landing-wrapper">Lorem ipsum dolor ismet.</div>


欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zaji/5567055.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-12-14
下一篇2022-12-14

发表评论

登录后才能评论

评论列表(0条)

    保存