Align the grid content

Report a typo

Write CSS code to center the grid items horizontally, then align the elements vertically, evenly pushing them to the edges.

Write HTML and CSS code
<!DOCTYPE html>
<html>
<head>
<title>Grid elements</title>
</head>
<body>
<div class="grid-container">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</body>
</html>














Completed 0 of 2
Align the elements to the center horizontally
Align the elements vertically evenly pushing them to the edges
___

Create a free account to access the full topic