Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 3: Web Design with Cascading Style Sheets (CSS)!
Instruction
Floating Images so Text Flows Around Them
To create layouts where text flows around images, CSS offers the float
property. This technique is commonly used in headers to float a logo to the left, allowing text to fill the space on the right.
How to Use the Float Property
The float
property can be set to either left
or right
, aligning an element to that side and letting other elements flow around it.
**HTML Stru...