I'm very new to HTML and CSS, and I can't seem to figure out whats causing the problem. Clicking the modify button on this repeating section results in the yellow highlighted section being displayed behind all of the inputs making it neigh impossible to delete or move the content once its created is there anything obvious I'm missing here? <fieldset class="repeating_skills">
<div class="sheet-Rbox" style="height: 100px; width: 400px; z-index: -2;">
<div class="sheet-Label" style="width: 100px; z-index: -1;">Name:</div>
<input type="text" style="width: 200px; left: 100px; z-index: -1;" class="sheet-Tinput" name="attr_character_skill_name"></input>
<div class="sheet-Label" style="width: 150px; top: 20px; z-index: -1;">Attribute:</div>
<select style="width: 250px; left: 150px; top: 20px; z-index: -1;" class="sheet-Select" name="attr_character_skill_attribute">
<option value="0">Pick one</option>
<option value="@{character_strength}">Strength</option>
<option value="@{character_dexterity}">Dexterity</option>
<option value="@{character_constitution}">Constitution</option>
<option value="@{character_Intelligence}">Intelligence</option>
<option value="@{character_wisdom}">Wisdom</option>
<option value="@{character_charisma}">Charisma</option>
</select>
<button class="roll_Roll" type="roll" value:="&{template:default} {{name=@{character_name}'s @{character_skill_name} Roll}} {{Talents=@{character_skill_talents}}} {{Result=[[1d20+@{character_skill_attribute}]] plus any relevant talents}}" style="left: 297px; top: 0px; z-index: -1;"></button>
<div class="sheet-Label" style="width: 400px; top: 40px; z-index: -1;">Talents:</div>
<textarea class="sheet-Tarea" style="width: 390px; height: 40px; top: 60px; z-index: -1;" name="attr_character_skill_talents"></textarea>
</div>
</fieldset>