What it says on the tin! Not a Twine-specific question, I suppose, but very irritating all the same. Hoping you guys can help me with it. Here are the relevant CSS bits, pared down for clarity:
.circle {
z-index: 1;
width: 2px;
height: 2px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background: rgba(255, 255, 115, 0.3);
box-shadow: 0 0 70px 120px rgba(255, 255, 115, 0.3);
}
table {
border: 60px black solid;
z-index: 10;
}
Very simple! The table's black border should cover up the edge of the yellow circle. And yet, in Firefox (even when I used !important in my desperation), it refuses to tuck the circle underneath... Here are my screenshots of the issue.
Do I need to use something else for Firefox? Is there something within the Sugarcube generic layout that's conflicting with the z-index? Send help.
edit: And here's the HTML for the page.
<table>
<tr><td></td><td></td><td><div id="left">[img[left][203c]]</div></td><td class="toprighttext"><<popup "R" "203minibar">> @@white-space:pre; @@ <<popup "P" "203plant">>
<div class="circle"></div></td></tr>
<tr><td></td><td></td><td></td><td><div id="down">[img[down][203h]]</div></td></tr>
<tr><td></td><td></td><td></td><td></td></tr>
</table>