This below. I added hard coded widths to the tableHeadSkill, etc. classes HTML <div class="sheet-container"> <div class="sheet-float sheet-full sheet-skills"> <div class="sheet-header"> <span>Fertigkeiten</span> </div> <div class="sheet-table"> <div class="sheet-tableBody"> <div class="sheet-tableRow"> <div class="sheet-tableHeadSkill">Fertigkeit</div> <div class="sheet-tableHeadAtt">Attr.</div> <div class="sheet-tableHeadValue">Wert</div> <div class="sheet-tableHeadValue">MOD</div> <div class="sheet-tableHeadRoll">Roll</div> </div> <div class="sheet-tableRow"> <div class="sheet-tableCellSkill">Armbrust</div> <div class="sheet-tableCellAtt">Fe</div> <div class="sheet-tableCellValue"><input name="attr_armbrust" type="number" value="0" /></div> <div class="sheet-tableCellValue"><input name="attr_armbrust_mod" type="number" value="0" /></div> <div class="sheet-tableCellRoll"><button name="roll_armbrust" type="roll" value="@{abilityroll} schießt mit der Armbrust mit dem Ergebniss [[(@{fe}+@{armbrust}+@{armbrust_mod})d10!!sdkh@{fe} + ?{Modifier?|0}]]"></button></div> </div> </div> </div> <fieldset class="repeating_basicskills"> <div class="sheet-tableBody"> <div class="sheet-tableRow"> <div class="sheet-tableCellSkill"><input class="sheet-sheet-baseinfo" type="text" name="attr_skillname" /></div> <div class="sheet-tableCellAtt"> <select name="attr_attribut" class="sheet-charaselect"> <option value="@{Na}">Nahkampf</option> <option value="@{Fe}">Fernkampf</option> <option value="@{Ge}">Geschick</option> <option value="@{Wa}">Wahrnehmung</option> <option value="@{Ko}">Konstitution</option> <option value="@{in}">Intelligenz</option> <option value="@{Wi}">Wissen</option> <option value="@{Ca}">Charisma</option> </select> </div> <div class="sheet-tableCellValue"><input type="number" name="attr_skill" value="0" /></div> <div class="sheet-tableCellValue"><input type="number" name="attr_skill_mod" value="0" /></div> <div class="sheet-tableCellRoll"><button type="roll" name="roll_skill" value="@{abilityroll} würfelt @{skillname} mit dem Ergebniss [[(@{attribut}+@{skill}+@{skill_mod})d10!!sdkh@{attribut} + ?{Modifier?|0}]]"></button></div> </div> </div> </fieldset> </div> </div> CSS /* Tabelle */ .sheet-container .sheet-table { display: table; } .sheet-container .sheet-tableBody { display: table-row-group; } .sheet-container .sheet-tableRow { display: table-row; } .sheet-container .sheet-tableHeadSkill, .sheet-container .sheet-tableHeadAtt, .sheet-container .sheet-tableHeadValue, .sheet-container .sheet-tableHeadRoll, .sheet-container .sheet-tableCellSkill, .sheet-container .sheet-tableCellAtt, .sheet-container .sheet-tableCellValue, .sheet-container .sheet-tableCellRoll { border: 1px solid #999999; display: table-cell; padding: 3px 10px; } .sheet-container .sheet-tableRow .sheet-tableHeadSkill, .sheet-container .sheet-tableRow .sheet-tableCellSkill { width:215px; } .sheet-container .sheet-tableHeadSkill input[type="text"], .sheet-container .sheet-tableCellSkill input[type="text"] { width:100%; } .sheet-container .sheet-tableHeadAtt, .sheet-container .sheet-tableHeadValue, .sheet-container .sheet-tableHeadRoll, .sheet-container .sheet-tableCellAtt, .sheet-container .sheet-tableCellValue, .sheet-container .sheet-tableCellRoll { width:120px; } select.sheet-charaselect { width:100%; } .sheet-container .sheet-tableHeadSkill, .sheet-container .sheet-tableHeadAtt, .sheet-container .sheet-tableHeadValue, .sheet-container .sheet-tableHeadRoll { background-color: #EEE; font-weight: bold; } .sheet-container .sheet-tableHeadSkill, .sheet-container .sheet-tableHeadAtt, .sheet-container .sheet-tableHeadValue, .sheet-container .sheet-tableHeadRoll, .sheet-container .sheet-tableCellAtt { text-align: center; }