I've got a nice looking angled cut on a <span> here (which could just as easily be a <div> if that'd work better). This is achieved by this css decleration: clip-path: polygon(calc(100% - 0px) 0, 100% 10px, 100% 100%, 11px 100%, 0 calc(100% - 10px), 0 0); In context, here's what it is applied to... I've been adding popup explainers to the sheet via the <a> method listed here. <a href="https://wiki.roll20.net/Character_Sheet_Enhancement#Popup" rel="nofollow">https://wiki.roll20.net/Character_Sheet_Enhancement#Popup</a> However, as long as that clip-path styling remains in place, the popup and overlay gets blocked, restricting it to, well, the clipped path area. Like so. If I uncheck the clip-path declaration in the 'inspect' view on Chrome, the popup shows up as normal. I've tried applying clip-path: none; to all of the divs and classes involved in the popup, such as the overlay, box, and popup class, really anything and everything, but it doesn't change anything. So my questions are... Why does this happen? I'm not sure I fully understand what clip-path does, and why it applies to all additional elements inside the same div/span? Is there a styling alternative to clip-path that will get me the same bottom corner cut angle results? Is there a solution here that I'm missing? So that I can continue to use clip-path (which I'm quite happy with visually). Any help would be appreciated. Thanks! Here's a sample of a chunk of html with the popup inside it, if that helps <div class="skillsfillrepeating"> <!-- class is a misnomer leftover from before -->
<span class="skillnamefieldprimary" name="attr_allcombat">
<div class="box">
<a class="button" href="#popup-allcombatpopupcompact">All Combat<img src ="<a href="https://github.com/danimagaming/ForgeofSteelRoll20beta/blob/main/battle-gear.png?raw=true" rel="nofollow">https://github.com/danimagaming/ForgeofSteelRoll20beta/blob/main/battle-gear.png?raw=true</a>" style="left: -81pt;"></a>
</div> <!-- close box -->
<div id="popup-allcombatpopupcompact" class="overlay">
<div class="popup">
<h2>All Combat</h2>
<a class="close" href="#">×</a>
<div class="content">
<p>All Combat is your starting CP for <strong>any equipped weapon</strong>, including both Melee and Ranged combat, and potentially even Combat Magic. This includes grappling, fighting unarmed, throwing things, ranged weapons, etc.
<br><br>
You can <strong>specialize</strong> in either 'Ranged Combat' or 'Melee Combat'. You can also specialize in <strong>maneuvers</strong> that apply to any weapon used, such as 'Targeted Location: Legs', 'Attack from Surprise', etc.
</p>
</div> <!-- close content -->
</div> <!-- close popup -->
</div> <!-- close popup1 id overlay -->
</span>
<input type="text" class="skilltotalfield" name="attr_allcombatskilltotal" value="">
<span class="skillrollbutton"></span>
</div>