Is there a clever method to achieve transparency for an element that allows the background of its parent element to shine through and display the body background, for example?
Consider this scenario:
<body style="background: url(space.jpg)">
<div style="background: black;">
<a href="#" style="background:super-transparent;">Click Here!</a>
</div>
</body>
Even if the parent element has a black background, is it feasible for it to still reflect the body background?