Align grid items

Report a typo

Write the correct CSS code to align grid items to the center horizontally and vertically using the place-items property.

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 class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</body>
</html>





Completed 0 of 1
Align grid items to the center horizontally and vertically
___

Create a free account to access the full topic