8-bit color compatibility of Google browser hexadecimal colors / hex color plus transparency

clipboard.png

8

8 8

801~991%~99%

clipboard.png

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style>
        .box{
            width: 200px;
            height: 200px;
            background: -sharpff660090;
            z-index: 99;
            position: absolute;
            top: 100px;
            left: 100px;
        }
        .xxx{
            width: 200px;
            height: 200px;
            background: -sharp000;
            z-index: 1;
        }
    </style>
</head>
<body>

    <div class="box"></div>
    <div class="xxx"></div>

</body>
</html>
Apr.11,2021

not only 0 to 99 is actually 00 to FF but also hexadecimal


can you use rgba

Menu