I've designed a site here and introduced some letters like so:
<div class="d">d</div>
<div class="e">e</div>
<div class="s">s</div>
<div class="i">i</div>
<div class="g">g</div>
<div class="n">n</div>
The red letters I've given opacity to like so:
.e {font-size: 500px; position: relative; bottom: 650px; left:
100px; color: red; opacity: 0.2}
Now d
and e
work well together. The opaque e
overlaps the solid d
as it should. However, when I want the opaque e
to overlap the solid s
it doesn't, the s
instead overlapping the e
.
This seems to be an issue of layers or whatever word Lint or html uses?
So how to I move s
to the back so e
overlaps it?