Files

36 lines
727 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Align an Item Horizontally using justify-self
---
# Align an Item Horizontally using justify-self
2018-10-12 15:37:13 -04:00
---
## Problem Explanation
In this challenge you are required to use the "justify-self" property to horizontally align a grid item.
2018-10-12 15:37:13 -04:00
---
## Hints
### Hint 1
2018-10-12 15:37:13 -04:00
You can horizontally align an item by declaring the following in your CSS codeblock:
```css
justify-self: value;
```
where value is how you would like to horizontally align the item.
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
Since this challenge requires you to (horizontally) center the item with the class `item2`, declare the following in your `.item2` CSS codeblock:
```css
justify-self: center;
```
</details>