Short answer: None.
Long answer: Yes, if you use colors rgbainstead of properties opacity. For example, the following will give you a black background with 20% opacity and black text with full opacity:
p {
background: rgba(0, 0, 0, 0.2);
color: #000000;
}
For background images, use PNG with alpha channels.
source
share