what it says in the title
this video explains it better
Thanks guys
what it says in the title
this video explains it better
Thanks guys
Thanks Scot! I see whatâs happening there. Weâll get that fixed up.
Regarding those number inputs, I can elaborate (Iâm sure it will help when there are some video tutorials and documentation). For the most part, we are just exposing CSS properties used by CSS Grid under the hood. Our Grid Editor is a great way to learn how CSS Grid itself works, since weâre not trying to be too much more than an abstraction on those concepts.
grid-template-rows
and grid-template-columns
on the Grid itself (per breakpoint), and by setting grid-row-start
, grid-row-end
, grid-column-start
, grid-column-end
on the cells.Thanks, Much appreciate the explanation
Can I ask, how cell 2 is overlapping cell 1 in the Testimonial Block (CSS Grid example files)?
I have had a look and the grid col shows as 1fr 2rem 2fr, which makes sense to me, yet the cell 2 seems to have a -2rem margin applied (in old terms) and I canât find that in the settings
So if you inspect the Grid itself, youâll see the template is 1fr 2rem 2fr
. That means we have a 2rem
column in the middle forming a little spacer. Cell 2 fills that space, but Cell 1 is configured to fill the first two columns - the large one, and the little 2rem
one.
Try this:
2rem
track as well.That makes perfect sense! Thank you⌠hadnât spotted the column end 3 on the cell 1
Youâre welcome!
Update: The issue in the view is fixed for beta2.