1. 程式人生 > >CSS - 背景半透明

CSS - 背景半透明

內容 一句話 pre eight red wid gree back head

就一句話

background: rgba(0, 0, 0, .2);

    body {
        background-color: pink;
    }
    div {
        width: 200px;
        height: 200px;
        /*background-color: #000;*/
        color: #fff;
        background: rgba(0, 0, 0, .2); /* red  green blue  alpha  0~1  */
    }
    </style>
</head>
<body>
    <div>
        我是文字內容
    </div>
</body>

CSS - 背景半透明