Curve Text Around a Floating Image

shape-outside is a CSS property that allows geometric shapes to be set, in order to define an area for text to flow around.

.shape {
  width: 300px;
  float: left;
  shape-outside: circle(50%);
}

Leave a comment

Your email address will not be published. Required fields are marked *