scrimba
Responsive Design
Better style
CSS Gradients
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

AboutCommentsNotes
CSS Gradients
Expand for more info
index.html
run
preview
console
<html>
<head>
<style>
.box { padding: 10px; }

.box-1 { }

.box-2 { }

.box-3 { }

.box-4 { }

.box-5 { }

</style>
</head>
<body>
<div class="box box-1"></div>
<div class="box box-2"></div>
<div class="box box-3"></div>
<div class="box box-4"></div>
<div class="box box-5"></div>

</body>
</html>
Console
index.html
-5:31