scrimba
CSS Grid
Intro to the CSS Grid course
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

Intro to the CSS Grid course
AboutCommentsNotes
Intro to the CSS Grid course
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Why learn CSS Grid layout?</h1>
<!-- https://caniuse.com/#feat=css-grid -->
<ul class="list">
<li>EASIER TO CREATE TWO DIMENSIONAL LAYOUTS</li>
<li>SIMPLER MARKUP</li>
<li>FLEXIBLE</li>
<li>SKIP FRAMEWORKS</li>
<li>BROWSER SUPPORT</li>
<li><a href="examples.html">SEE EXAMPLES</a></li>
</ul>
</body>
</html>
Console
index.html
-4:44