Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 16 Lesson 7...

I'm having trouble understanding what to do, the output is not changing...I'm just not sure...
by

2 Answers

iamabhishek
Let me check and get back to you.
kshitijrana14
Try this one

<!DOCTYPE html>
<html>
<head>
<title>CSS Grid Template Areas</title>
<style>
.grid {
display: grid;
background-color: #d6d1f5;
padding: 20px;
grid-template-columns: auto auto auto auto;
grid-template-rows: auto;
grid-template-areas: "thor thor . ."
". asgard asgard ."
". . loki loki";
}
.item {
background-color: #E7E4F8;
border: 1px solid black;
padding: 20px;
text-align: center;
}
.thor {
background-color: #ED639E;
grid-area: thor;
}
.loki {
background-color: #FFB643;
grid-area: loki;
}
.asgard {
background-color: #4535AA;
color: white;
grid-area: asgard;
}

</style>
</head>
<body>
<div class="grid">
<div class="item asgard">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item thor">4</div>
<div class="item">5</div>
<div class="item">6</div>
<div class="item loki">7</div>
<div class="item">8</div>
<div class="item">9</div>
</div>
</body>
</html>

Login / Signup to Answer the Question.