DEV Community

Discussion on: MAKING LAYOUTS WITH CSS (Pt a) - Part 5 of Frontend Development Series

Collapse
 
alohci profile image
Nicholas Stimpson • Edited

In one example, you've written

/* Add the property of float to the above program */
.container div {
    display: float;
}

where you meant

/* Add the property of float to the above program */
.container div {
    float: right;
}
Collapse
 
dillionmegida profile image
Dillion Megida

Thanks for the correction, I'll change that now