Hello everyone I've been working on a personnal character sheet and I've been using the pseudo class ":has" to handle tabulations and some other styles as I've not seen it in the security filtering. An example : .inventory-tabs:not ( :has ( input [ value = "Armors" ] :checked ))~ .inventory-shifting .armors , .inventory-tabs:not ( :has ( input [ value = "Weapons" ] :checked ))~ .inventory-shifting .weapons { display : none ; } Another example of where I'm using this pseudo-class : .itemcontrol:has ( .repcontrol_move ) { height : 26px ; margin : 0px ; } But it seems that this pseudo class isn't passing the security filtering. Am I wrong or is this an oversight of the limitations ? Or maybe my "Potential CSS security violations" is coming from something else ?