scrimba
Introduction to CSS
CSS Float & Clear
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

CSS Float & Clear
AboutCommentsNotes
CSS Float & Clear
Expand for more info
index.css
run
preview
console
.box {
height: 200px;
/* width: 200px; */
/* float: left; */
}
.tomato {
/* float: left; */
/* height: 220px; */
/* width: 50% */
}
.purple {
/* float: left; */
/* width: 50%; */
}
.gold {
/* float: left; */
/* clear: left; */
/* width: 100%; */
}
.green {
/* float: left; */
/* clear: right; */
/* width: 100%; */
}
Console
index.html#
-5:31