CSS Float Image

Floating images allows text to wrap around them.

Preview

Code

<style>
img{
float:left;
margin-right:10px;
}
</style>

<img src="https://picsum.photos/120/80">
<p>This paragraph wraps around the image using float.</p>

More CSS Float Examples (7)