How I do I simply delete a grid?

How I do I simply delete a grid? Thanks.

Hi
Do you mean CSS Grid styling that has been added to an element? If so, just go into the Styles panel and delete those properties. Not sure what else you might mean.
Bob

grid is controlled by the

display: grid;

style property.

if you delete that, none of the other grid rules will function.

If you are playing with css grid panel in PG, the quickest way to delete the grid, is to delete all the rows…

In this case, PG deletes the grid off the container’s style/class automatically.

That’s it. Thank you everyone.