Text Wrap Around Shape
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>