Skip to content

CSS Grid

Kim Schlesinger edited this page Mar 6, 2018 · 2 revisions

CSS Grid

All information is from the video CSS Grid Layout Crash Course

.wrapper {
    display: grid; 
    grid-template-columns: 30% 70%;
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    grid-gap: 0.5em; 
}
Clone this wiki locally