- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Combining automatic and explicit coordinates</title>
<link href="world.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body class="world">
<div class="land land--small">
<div class="element element--water element--simple">1</div>
<div class="element element--grass element--simple">2</div>
<div class="element element--rocks element--simple">3</div>
<div class="element element--lava element--simple">4</div>
<div class="element element--sand element--simple">5</div>
</div>
</body>
</html>
CSS
.land {
}
You’ve gone to a different page
Goalscompleted
0
- Set the grid display for the
.land
block, - then assign three columns to the grid using the
grid-template-columns
property:100px
,100px
,100px
, - and finally assign three rows using the
grid-template-rows
property:100px
,100px
,100px
.
Comments