Add another missing feature from web css. It's nice to be able to use the same variables in color-mix() and here.
28 lines
166 B
CSS
28 lines
166 B
CSS
a {
|
|
opacity: initial;
|
|
}
|
|
|
|
b {
|
|
opacity: inherit;
|
|
}
|
|
|
|
c {
|
|
opacity: unset;
|
|
}
|
|
|
|
d {
|
|
opacity: 1;
|
|
}
|
|
|
|
e {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
f {
|
|
opacity: 0;
|
|
}
|
|
|
|
g {
|
|
opacity: 50%;
|
|
}
|