Files
2018-10-16 21:32:40 +05:30

26 lines
529 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Add Columns with grid-template-columns
localeTitle: 使用grid-template-columns添加列
---
## 使用grid-template-columns添加列
在此挑战中,您需要为网格定义列。
### 暗示
您可以通过在CSS代码块中声明以下内容来定义列
```css
grid-template-columns: parameters;
```
参数是你想要的任何东西。
### 解
由于挑战要求您创建三列每列100px请在.container CSS代码块中声明以下内容
```css
grid-template-columns: 100px 100px 100px;
```