
Hello everyone! I'm building a character sheet for Cyberpunk 2020 (a practice in preparation for Cyberpunk RED) system and want to utilize "fill radio buttons to the left" tip from CSS Wizardry wiki page (great work on that whole thing btw). The problem is, my page's layout is built on grid and blocks of 4 radio buttons are separated into different divs: <div class="wounds">
<div class="wounds-block">
<div>Light</div>
<div class="wounds-radio-block">
<input type="radio" class="wound-radio" name="attr_wounds" checked="checked"/><span></span>
<input type="radio" class="wound-radio" name="attr_wounds"/><span></span>
<input type="radio" class="wound-radio" name="attr_wounds"/><span></span>
<input type="radio" class="wound-radio" name="attr_wounds"/><span></span>
</div>
</div>
<div class="wounds-block">
<div>Serious</div>
<div class="wounds-radio-block">
<input type="radio" class="wound-radio" name="attr_wounds"/><span></span>
<input type="radio" class="wound-radio" name="attr_wounds"/><span></span>
<input type="radio" class="wound-radio" name="attr_wounds"/><span></span>
<input type="radio" class="wound-radio" name="attr_wounds"/><span></span>
</div>
</div>
...8 more wounds-blocks Styles proposed in CSS Wizardry work fine for one block, but do not affect other blocks - the radios stay checked, as per general style for them. So my question is, is it even possible to implement desired behaviour for such a layout? Or should I develop a new approach for this section for it to work? Other alternative is to dump all this work on Sheet Worker, which might be simplier than trying to style it into oblivion %) Whole code and styles can be found here <a href="https://github.com/StoumTheCat/roll20-character-sheets" rel="nofollow">https://github.com/StoumTheCat/roll20-character-sheets</a> under cyberpunk2020-by-stoum branch