* 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
		
			
				
	
	
		
			30 lines
		
	
	
		
			576 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			576 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| title: Create a Row Gap using grid-row-gap
 | |
| ---
 | |
| # Create a Row Gap using grid-row-gap
 | |
| 
 | |
| ---
 | |
| ## Problem Explanation
 | |
| This challenge requires you to add a gap of `20px` between all the rows of the CSS Grid in .container.
 | |
| 
 | |
| 
 | |
| ---
 | |
| ## Hints
 | |
| 
 | |
| ### Hint 1
 | |
| 
 | |
| To add a gap between the rows in a CSS grid, we use the `grid-row-gap` CSS property.
 | |
| 
 | |
| 
 | |
| ---
 | |
| ## Solutions
 | |
| 
 | |
| <details><summary>Solution 1 (Click to Show/Hide)</summary>
 | |
| 
 | |
| Since the challenge has you adding a gap of `5px`, you would add the following line to the `.container` CSS code block.
 | |
| 
 | |
| ```css
 | |
| grid-row-gap: 5px;
 | |
| ```
 | |
| 
 | |
| </details> |