I have a structure like this:
<div class="abc">
<ul>
<li>something</li>
...
</ul>
</div>
I need to apply on the abc
div an opacity option. If I do it, it works, but the text inside <ul>
has opacity as the abc
DIV => the text in <ul>
is lighter.
Is there any way to apply opacity
on the DIV (its background), but not on the content inside the DIV?
Thank you