How to change fonts only opacity

Hi everyone I only need to change the fontsopacity in cssfor this? postscript I only need to changefonts

+4
source share
3 answers

All you have to do is set the alpha channel in the p tag. For example:

p { color: rgba(0,0,0,0.3); }
+6
source

Use RGB instead of hex for the color of your text, and then add opacity, as shown below. (this is gray text with opacity)

p {
    color: rgba(85, 85, 85, 0.8);
}

Change 0.8 depending on how much opacity you need, the lower the number, the greater the transparency.

+3
source

div , ?

-1

All Articles