Text Wrap Around Shape

Use shape-outside to wrap text around circular images.

Preview

Code

<style>
img{
width:140px;
float:left;
shape-outside:circle(50%);
clip-path:circle(50%);
margin:10px;
}
</style>

<img src="https://via.placeholder.com/140">

<p>
Text flows around the circular image using shape-outside.
This technique creates magazine-style layouts.
</p>

More CSS Image Shapes Examples (8)