---
id: 5a90374338fddaf9a66b5d3a
title: Align an Item Horizontally using justify-self
challengeType: 0
videoUrl: ''
localeTitle: 使用justify-self水平对齐项目
---
## Description
在CSS Grid中,每个项目的内容位于一个称为单元格的框中。您可以使用网格项上的justify-self
属性水平对齐内容在其单元格中的位置。默认情况下,此属性的值为stretch
,这将使内容填充单元格的整个宽度。此CSS Grid属性也接受其他值: start
:对齐单元格左侧的内容, center
:对齐单元格center
的内容, end
:对齐单元格右侧的内容。
## Instructions
使用justify-self
属性将项目与item2
。
## Tests
```yml
tests:
- text: item2
类应该有一个具有center
值的justify-self
属性。
testString: 'assert(code.match(/.item2\s*?{[\s\S]*justify-self\s*?:\s*?center\s*?;[\s\S]*}/gi), "item2
class should have a justify-self
property that has the value of center
.");'
```
## Challenge Seed
## Solution
```js
// solution required
```