sanjar-notes / web_dev_fundamentals

The basics - HTML, CSS, Javascript and more
https://sanjar-notes.github.io/web_dev_fundamentals/
3 stars 0 forks source link

grid mnemonics #87

Open ahmarcode opened 1 year ago

ahmarcode commented 1 year ago
  1. justify means horizontal (left to right)
  2. align means vertical (top to bottom)
  3. "Virtual cells" have width and heigh as per grid-template-area and grid-template-column
  4. *-items - actual cells within "virtual cells"

Derivable (don't remember):

  1. *-content - actual tracks within "virtual tracks"
  2. -self - child property that overrides -items property set by parent.

https://css-tricks.com/snippets/css/complete-guide-grid/