scrimba
Burger-meny med HTML og CSS
Burger #3 - Vise og skjule menyen
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Burger #3 - Vise og skjule menyen
AboutCommentsNotes
Burger #3 - Vise og skjule menyen
Expand for more info
index.css
run
preview
console
body {
padding: 16px;
}

#burger {
width: 32px;
height: 32px;
display: grid;
grid-template-rows: 4px 4px 4px;
align-content: space-between;
cursor: pointer;
position: absolute;
top: 10px;
left: 10px;
z-index: 2;
}



#burger div {
background-color: #222;
}

#menu {
background-color: orange;
height: 100vh;
width: 100%;
display: grid;
justify-items: center;
align-content: space-around;

position: absolute;
left: 0;
top: 0;

z-index: 1;

}

#menu a {
text-decoration: none;
color: white;
font-weight: 700;
}
Console
index.html
-3:55