| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | --- | 
					
						
							|  |  |  | id: 5a94fdf869fb03452672e45b | 
					
						
							|  |  |  | title: Align All Items Vertically using align-items | 
					
						
							|  |  |  | challengeType: 0 | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  | videoUrl: 'https://scrimba.com/p/pByETK/ckzPeUv' | 
					
						
							|  |  |  | forumTopicId: 301121 | 
					
						
							|  |  |  | localeTitle: 使用 align-items 垂直对齐所有项目 | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | --- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Description
 | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  | <section id='description'> | 
					
						
							|  |  |  | 对网格容器使用<code>align-items</code>属性可以给网格中所有的网格项设置沿列轴对齐的方式。 | 
					
						
							|  |  |  | </section> | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | ## Instructions
 | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  | <section id='instructions'> | 
					
						
							|  |  |  | 请使用<code>align-items</code>属性将所有网格项移动到单元格的末尾。 | 
					
						
							|  |  |  | </section> | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | ## Tests
 | 
					
						
							|  |  |  | <section id='tests'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```yml | 
					
						
							|  |  |  | tests: | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  |   - text: '<code>container</code>类应该有<code>align-items</code>属性且值为<code>end</code>。' | 
					
						
							| 
									
										
										
										
											2020-02-18 01:40:55 +09:00
										 |  |  |     testString: assert(code.match(/.container\s*?{[\s\S]*align-items\s*?:\s*?end\s*?;[\s\S]*}/gi)); | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </section> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Challenge Seed
 | 
					
						
							|  |  |  | <section id='challengeSeed'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <div id='html-seed'> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ```html | 
					
						
							|  |  |  | <style> | 
					
						
							|  |  |  |   .item1{background:LightSkyBlue;} | 
					
						
							|  |  |  |   .item2{background:LightSalmon;} | 
					
						
							|  |  |  |   .item3{background:PaleTurquoise;} | 
					
						
							|  |  |  |   .item4{background:LightPink;} | 
					
						
							|  |  |  |   .item5{background:PaleGreen;} | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  |   .container { | 
					
						
							|  |  |  |     font-size: 40px; | 
					
						
							|  |  |  |     min-height: 300px; | 
					
						
							|  |  |  |     width: 100%; | 
					
						
							|  |  |  |     background: LightGray; | 
					
						
							|  |  |  |     display: grid; | 
					
						
							|  |  |  |     grid-template-columns: 1fr 1fr 1fr; | 
					
						
							|  |  |  |     grid-template-rows: 1fr 1fr 1fr; | 
					
						
							|  |  |  |     grid-gap: 10px; | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  |     /* 请在本行以下添加你的代码 */ | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     /* 请在本行以上添加你的代码 */ | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  |   } | 
					
						
							|  |  |  | </style> | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | <div class="container"> | 
					
						
							|  |  |  |   <div class="item1">1</div> | 
					
						
							|  |  |  |   <div class="item2">2</div> | 
					
						
							|  |  |  |   <div class="item3">3</div> | 
					
						
							|  |  |  |   <div class="item4">4</div> | 
					
						
							|  |  |  |   <div class="item5">5</div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </section> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## Solution
 | 
					
						
							|  |  |  | <section id='solution'> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | ```js | 
					
						
							|  |  |  | // solution required | 
					
						
							|  |  |  | ``` | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 18:03:03 -04:00
										 |  |  | </section> | 
					
						
							| 
									
										
										
										
											2020-02-11 21:39:15 +08:00
										 |  |  |                |