Resetting the opacity of a child element – Maple Browser (Samsung TV App)

The problem you probably have (based on looking at your selectors) is that opacity affects all child elements of a parent: div { background: #000; opacity: .4; padding: 20px; } p { background: #f00; opacity: 1; }​ http://jsfiddle.net/Kyle_/TK8Lq/ But there is a solution! Use rgba background values and you can have transparency wherever you want … Read more