You can have multiple grids in the same sheet, but your second grid won't work, because in the template-grid-areas, its referring to itself. Also your HTML looks like its misisng a lot of </div>'s. You can have multiple grids in the same sheet. Every div must be accoumpanied by an </div>. You probably want a container div that both top and mid-bt are inside, then you can give that a grid, and position top and mid-bt inside it. Like <div class="container"> <div class="top"> <!-- lots of stuff trimmed --> </div> <div class="mid-bt"> <!-- lots of stuff trimmed --> </div> </div> Then in your CSS /* DIV grid CONTAINER */ div.sheet-container { display:grid; grid-template-areas:"top top" "mid-bt ? "; } /* DIV grid TOP*/ div.sheet-top { grid-area: top; display: grid; grid-template-columns: 403px 405px; grid-template-rows: 280px 160px ; grid-template-areas:"name discrp" "pilars sostab"; grid-gap: 6px; width: 820px; height: 1780px; background-image: url( <a href="https://raw.githubusercontent.com/Ajpirion/ToC-Char_sheet/main/ToC_R20_Char_sheet.png" rel="nofollow">https://raw.githubusercontent.com/Ajpirion/ToC-Char_sheet/main/ToC_R20_Char_sheet.png</a> ); background-size: 813px 1762px; background-repeat: no-repeat; } /* DIV grid MID-BT*/ div.sheet-mid-bt { grid-area: mid-bt; display: grid; grid-template-columns: 200px 620px; grid-template-rows: 280px 160px ; grid-gap: 6px; width: 820px; height: 800px; } Chances are, you need to tweak the details- I'm not sure those will be arranged perfectly, but it's a start. Basically if you are using grid-areas: You create a grid as the container, then position each div it contains in the template-grid-areas, and give each of those div a grid-area identifier. Any of the grid-areas can itself be a grid, and becomes a container- each div ibside it can then be positioned in its grid-template-areas, and givem a grid-area identifier of its own. Note: these grids probably wont work until you fix the </div> problem in your html. Also note that grid-areas is not the only way to arrange grids, but for larger items in sheet layout like these it works pretty well. I think I've already linked it before, but you'd do well to study this page: <a href="https://cybersphere.me/css-grid/" rel="nofollow">https://cybersphere.me/css-grid/</a>