码迷,mamicode.com
首页 > Web开发 > 详细

CSS3:透明度

时间:2018-03-10 12:03:12      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:har   log   post   sharp   doc   lin   play   css3   sha   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS3:透明度</title>
    <style type="text/css">
        div{
            width:100px;
            height:100px;
            margin: 40px;
            display: inline-block;
            background-color: #ee3e80;}
        p{
            width: 100px;
            height: 100px;
            position: relative;
            top: 20px;
            left: 20px;
            margin:20px;}
        p.one {
            background-color: rgb(0,0,0);
            opacity: 0.5;}
        p.two {
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.5);}
    </style>
</head>
<body>
<div><p class="one"></p></div>
<div><p class="two"></p></div>
</body>
</html>

  

CSS3:透明度

标签:har   log   post   sharp   doc   lin   play   css3   sha   

原文地址:https://www.cnblogs.com/max-hou/p/8537408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!