scrimba
CSS Grid
Grid vs. Flexbox - CSS Grid tutorial
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

To see this lesson you need to be logged in. Joining Scrimba is free and gives you access to 20+ courses.Sign up
Grid vs. Flexbox - CSS Grid tutorial
AboutCommentsNotes
Grid vs. Flexbox - CSS Grid tutorial
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="basic.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<p>FLEXBOX HEADER</p>
<div class="flexbox-header">
<div>HOME</div>
<div>SEARCH</div>
<div>LOGOUT</div>
</div>
<br>
<p>GRID PAGE</p>
<div class="grid-page">
<div class="header">HEADER</div>
<div class="menu">MENU</div>
<div class="content">CONTENT</div>
<div class="footer">FOOTER</div>
</div>
</body>
</html>
Console
index.html
-5:02