Right so I am trying to make a section with six skills, on the left three with input fields, and a roll button. center a picture, and on the right another three skills with input and roll buttons. When editing the code in sublime text, there seems no issue. I can use the same code on my own website and it works. but when I put the code in the roll20 editor, loads of the parameters become white, and the character sheet completely scrambles all the items in there Here's the CSS: .sheet-grid-container-main { display: grid; grid-template-columns: repeat(9, 1fr); grid-template-rows: repeat(5, 1fr); grid-column-gap: 0px; grid-row-gap: 0px; .sheet-grid-title { grid-area: 1 / 1 / 2 / 10; } .sheet-grid-left-title { grid-area: 2 / 1 / 3 / 4; } .sheet-grid-strength-title { grid-area: 3 / 1 / 4 / 2; } .sheet-grid-strength-value { grid-area: 3 / 2 / 4 / 3; } .sheet-grid-strength-button { grid-area: 3 / 3 / 4 / 4; } .sheet-grid-dexterity-title { grid-area: 4 / 1 / 5 / 2; } .sheet-grid-dexterity-value { grid-area: 4 / 2 / 5 / 3; } .sheet-grid-dexterity-button { grid-area: 4 / 3 / 5 / 4; } .sheet-grid-constitution-title { grid-area: 5 / 1 / 6 / 2; } .sheet-grid-constitution-value { grid-area: 5 / 2 / 6 / 3; } .sheet-grid-constitution-button { grid-area: 5 / 3 / 6 / 4; } .sheet-grid-right-title { grid-area: 2 / 7 / 3 / 10; } .sheet-grid-intelligence-title { grid-area: 3 / 7 / 4 / 8; } .sheet-grid-intelligence-value { grid-area: 3 / 8 / 4 / 9; } .sheet-grid-intelligence-button { grid-area: 3 / 9 / 4 / 10; } .sheet-grid-focus-title { grid-area: 4 / 7 / 5 / 8; } .sheet-grid-focus-value { grid-area: 4 / 8 / 5 / 9; } .sheet-grid-focus-button { grid-area: 4 / 9 / 5 / 10; } .sheet-grid-wits-title { grid-area: 5 / 7 / 6 / 8; } .sheet-grid-wits-value { grid-area: 5 / 8 / 6 / 9; } .sheet-grid-wits-button { grid-area: 5 / 9 / 6 / 10; } .sheet-grid-image { grid-area: 2 / 4 / 6 / 7; } } and here's the html I used with it: <div class="grid-container-main"> <div class="grid-title"> <h3>Main Stats:</h3> </div> <div class="grid-left-title"> <h4>Physical:</h4> </div> <div class="grid-strength-title"> <h6>Strength</h6> </div> <div class="grid-strength-value"> <input type="number" class="fields" id="attr_strength" name="attr_strength"> </div> <div class="grid-strength-button"> <button type="pool" style="font-family: dicefontd10; font-size: 30px" value="">A</button> </div> <div class="grid-dexterity-title"> <h6>Dexterity</h6> </div> <div class="grid-dexterity-value"> <input type="number" class="fields" id="attr_dexterity" name="attr_dexterity"> </div> <div class="grid-dexterity-button"> <button type="pool" style="font-family: dicefontd10; font-size: 30px" value="">A</button> </div> <div class="grid-constitution-title"> <h6>Constitution</h6> </div> <div class="grid-constitution-value"> <input type="number" class="fields" id="attr_constitution" name="attr_constitution"> </div> <div class="grid-constitution-button"> <button type="pool" style="font-family: dicefontd10; font-size: 30px" value="">A</button> </div> <div class="grid-right-title"> <h4>Mental:</h4> </div> <div class="grid-intelligence-title"> <h6>Intelligence</h6> </div> <div class="grid-intelligence-value"> <input type="number" id="attr_intelligence" name="attr_intelligence"> </div> <div class="grid-intelligence-button"> <button type="pool" style="font-family: dicefontd10; font-size: 30px" value="">A</button> </div> <div class="grid-focus-title"> <h6>Focus</h6> </div> <div class="grid-focus-value"> <input type="number" id="attr_focus" name="attr_focus"> </div> <div class="grid-focus-button"> <button type="pool" style="font-family: dicefontd10; font-size: 30px" value="">A</button> </div> <div class="grid-wits-title"> <h6>Wits</h6> </div> <div class="grid-wits-value"> <input type="number" id="attr_wits" name="attr_wits"> </div> <div class="grid-wits-button"> <button type="pool" style="font-family: dicefontd10; font-size: 30px" value="">A</button> </div> <div class="grid-image"> <img src=" <a href="https://cdn2.iconfinder.com/data/icons/roleplay-and-tabletop-dice-glyph/430/7_glyph-512.png" rel="nofollow">https://cdn2.iconfinder.com/data/icons/roleplay-and-tabletop-dice-glyph/430/7_glyph-512.png</a> " class="centerimage" style="width: 80%; height: 80%;"> </div> </div>