❌
.card { opacity: 0.8; }
This also fades text and icons.
✅
.card { background-color: rgba(0,0,0,0.8); }
Why
Opacity affects the entire element tree.
Daily micro-tips for C#, SQL, performance, and scalable backend engineering.
❌
.card { opacity: 0.8; }
This also fades text and icons.
.card { background-color: rgba(0,0,0,0.8); }
Why
Opacity affects the entire element tree.