首頁  >  文章  >  web前端  >  css如何實現蒙版效果

css如何實現蒙版效果

王林
王林轉載
2020-07-16 17:34:569011瀏覽

css如何實現蒙版效果

重要知識點:

(推薦教學: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如何實現蒙版效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除