In this project I'm combining fullPage with CSS Grid Layout.
I currently have a grid defined on the first div called "section", but also want the contents of the "slide" div to conform to this same grid.
Below is the hierarchy.
<div class="section">
<div class="fp slides">
<div class="slides container">
<div class="slide>
For clarification I also made a pen where the problem is isolated.
Currently the CSS grid auto placement just puts "fp slides" in the first table cell (row 1, column 1) along with all the content it's children has (an h1, h2, p and h3). It should use all available rows/columns.
I've tried setting the grid-area of "fp slides" to all 6 cells but that doesn't preserve the rows and columns and just puts all content in "slide" underneath each other.
Is there a CSS Grid Layout option to make this work?