CSS Grid Review 본문

Programming/웹 개발

CSS Grid Review

쩡호 2018. 1. 13. 20:12

Review

At this point, we've covered a great deal of different ways to manipulate the grid and the items inside it to create interesting layouts.

  • grid-template-columns defines the number and sizes of the columns of the grid
  • grid-template-rows defines the number and sizes of the rows of the grid
  • grid-template is a shorthand for defining both grid-template-columns and grid-template-rows in one line
  • grid-gap puts blank space between rows and/or columns of the grid
  • grid-row-start and grid-row-end makes elements span certain rows of the grid
  • grid-column-start and grid-column-end makes elements span certain columns of the grid
  • grid-area is a shorthand for grid-row-startgrid-column-startgrid-row-end, and grid-column-end, all in one line


'Programming > 웹 개발' 카테고리의 다른 글

CSS Typography Review  (0) 2018.01.12
Google Fonts  (0) 2018.01.12
CSS font-size, line-height, leading  (0) 2018.01.12
CSS Color Review  (0) 2018.01.12
서브라임 단축키 (필요한 것만 계속 추가)  (0) 2018.01.12
Comments