LincolinAngaya / grid-challenge

practice challenge on grid

Home Page:https://lincolinangaya.github.io/grid-challenge/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

grid-challenge

practice challenge on grid

basic css grid properties

css grid container properties

  • grid-template-rows
  • grid gap
  • grid-auto-row
  • grid-auto-column
  • grid-template-area:
    'nav' 'nav' 'nav'
    'content''nav''side'
    'footer''footer''footer'
  • justify-content
  • align-items
  • display
## css grid item properties
  • grid-column: i.e 1/3
  • grid-row:2/4
  • grid area:nav;
  • align-self:end,center,start
  • justify-self
## selecting the items with pseudo-selectors i.e .item:nth-of-type(2){ grid-row:2/4 }

About

practice challenge on grid

https://lincolinangaya.github.io/grid-challenge/


Languages

Language:HTML 75.1%Language:CSS 24.9%