我知道你能写…
background-color: #ff0000;
... 如果你想要红色的东西。
你可以写…
background-color: rgba(255, 0, 0, 0.5);
... 如果你想要红色半透明的。
有没有简单的十六进制表示部分透明颜色的方法?我想要这样的东西:
background-color: #ff000088; <--- the 88 is the alpha
... 还是……
background-color: #ff0000 50%;
我得到的所有颜色都是十六进制的,而必须将它们全部转换为0-255的十进制刻度,这很烦人。