--- id: 5a90375238fddaf9a66b5d3b title: Align an Item Vertically using align-self challengeType: 0 videoUrl: 'https://scrimba.com/p/pByETK/cmzd4fz' forumTopicId: 301123 dashedName: align-an-item-vertically-using-align-self --- # --description-- Just as you can align an item horizontally, there's a way to align an item vertically as well. To do this, you use the `align-self` property on an item. This property accepts all of the same values as `justify-self` from the last challenge. # --instructions-- Align the item with the class `item3` vertically at the `end`. # --hints-- `item3` class should have a `align-self` property that has the value of `end`. ```js assert(code.match(/.item3\s*?{[\s\S]*align-self\s*?:\s*?end\s*?;[\s\S]*}/gi)); ``` # --seed-- ## --seed-contents-- ```html
1
2
3
4
5
``` # --solutions-- ```html ```