freeCodeCamp/guide/chinese/certifications/responsive-web-design/css-grid/use-css-grid-units-to-chang.../index.md

617 B
Raw Blame History

title localeTitle
Use CSS Grid Units to Change the Size of Columns and Rows 使用CSS网格单位更改列和行的大小

使用CSS网格单位更改列和行的大小

此挑战要求您将容器列的宽度设置为质询描述中指定的宽度。

暗示

更改grid-template-columns属性。

由于挑战要求您将宽度设置为1fr 100px2fr ,因此2frcss grid-template-columns属性.container为:

grid-template-columns: 1fr 100px 2fr; 

更多信息