My code is like this
<body style="background: url('im.jpeg')">
<div class="inner" style="opacity:0.5;margin-left:20px">
<div class="innermost">
<p>My content</p>
</div>
</div>
</body>
The problem with my code is that it body has an image so that it would be on full screen and class "innermost" has original content including pics and texts , opacity is assigned to "inner" class. And this opacity affects all element of "innermost". Is there any solution to prevent opacity of "innermost" class without affecting body style. Thanks for reading.
Update
is there any other alternative of my code , such that i can have image on full screen.