
So i am still new with all this, im creating custom sheet for my game so i have a reason to learn basic HTML and CSS. I have a SELECT field and a INPUT NUMBER FIELD that are not lining up right, could someone tell me what im doing wrong. Below is the HTML and CSS and a pic of what is wrong i would appreciate it. i have been looking at the wiki for a few hours now. with no luck. HTML <div class="sheet-hp sheet-block"> <table> <tr> <th> <select name="attr_armor" class="arm"> <option value="[[4]]">Normal</option> <option value="[[6]]">Boon</option> <option value="[[8]]">Bane</option> </select> </th> <th> <input name="attr_ab" type="number" value="@{armor}" disabled="true" /> </th> <th> <input name="attr_abb" type="number" value="0" />Se </th> </tr> </table> </div> CSS .charsheet .sheet-grid-section{ display: grid; grid-template-columns: 550px 250px; grid-template-rows: 225px 150px 150px 150px; grid-template-areas:"namelvl hp " "skills stat " "skills equip " "notes equip "; grid-gap: 5px; } .charsheet div.sheet-block{ display: grid; justify-content: top; padding: 5px; } .charsheet div.sheet-namelvl{ grid-area: namelvl; border: 3px solid red; } .charsheet div.sheet-hp{ grid-area: hp; border: 3px solid green; justify-content: left; } .charsheet div.sheet-stat{ grid-area: stat; } .charsheet div.sheet-skills{ grid-area: skills; } .charsheet div.sheet-equip{ grid-area: equip; } .charsheet div.sheet-notes{ grid-area: notes; } .button{ width:100px; } .arm{ width:100px; }