* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
38 lines
501 B
Markdown
38 lines
501 B
Markdown
---
|
|
title: Create Your First CSS Grid
|
|
---
|
|
# Create Your First CSS Grid
|
|
|
|
|
|
---
|
|
## Hints
|
|
|
|
### Hint 1
|
|
|
|
To change display of any element, the following syntax is used:
|
|
|
|
```css
|
|
display: propertyName;
|
|
```
|
|
|
|
### Hint 2
|
|
|
|
Change the display property of the .container element
|
|
|
|
### Hint 3
|
|
|
|
Set the display of the .container element to grid
|
|
|
|
|
|
---
|
|
## Solutions
|
|
|
|
<details><summary>Solution 1 (Click to Show/Hide)</summary>
|
|
|
|
To set the display of the .container element to grid:
|
|
|
|
```css
|
|
display: grid;
|
|
```
|
|
|
|
</details> |