css如何实现蒙版效果-LMLPHP

重要知识点:

(推荐教程:css快速入门

background-color:#fff;filter:Alpha(Opacity=60);opacity:0.6;
登录后复制

样式:

<style>
    .back {background:url(images/coupon-logo.gif) no-repeat;}
    .top {height:100px;background-color:#fff;filter:Alpha(Opacity=60);opacity:0.6;}
</style>
登录后复制

html代码:

<div class="back">
    <div class="top"></div>
</div>
登录后复制

以上就是css如何实现蒙版效果的详细内容,更多请关注Work网其它相关文章!

08-29 08:01