- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Unfixed column width</title>
<link href="world.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body class="world">
<div class="land">
<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>
</body>
</html>
CSS
.land {
display: grid;
grid-template-columns: 100px 100px 100px;
}
You’ve gone to a different page
Goalscompleted
0
- In the
.land
block grid change the size of the first column from100px
toauto
, - then assign an automatic size to the second column
- and third column.
Comments