I found a strange CSS check result: when rgba()used for background, it does not check, however a workaround rgba()for background-color. Why does this rule exist? Is this a validation error?
Try to confirm the following there , and you can see the result:
div {
background: rgba(0, 0, 0, 0.5);
}
and
div {
background-color: rgba(0, 0, 0, 0.5);
}
source
share