How do you add different opacities to nested items?

前端 未结 3 1439
梦如初夏
梦如初夏 2020-12-19 10:57

I have two nested items in HTML and I want to give the wrraping one opacity 0.8 and the one inside it opacity 1.
I think I understand why it does not work, but, how can

3条回答
  •  情话喂你
    2020-12-19 11:13

    you could always embrace progressive enhancement and use rgba on your background-colors

    // this will only affect the div it's applied to and not it's contents
    background-color: rgba(0,0,0,0.8)
    

提交回复
热议问题