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

30 lines
423 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: Create Your First CSS Grid
localeTitle: 创建您的第一个CSS网格
---
## 创建您的第一个CSS网格
### 提示1
要更改任何元素的显示,请使用以下语法:
```css
display: propertyName;
```
### 提示2
更改.container元素的display属性
### 提示3
将.container元素的显示设置为grid
### 解
要将.container元素的显示设置为grid
```css
display: grid;
```