How To Wrap Text Around Another Element?

I’d like to have text wrap around a left-aligned element (a container) in the same way that text will wrap around an image. Is this possible in Bricks? Thanks!

Hi @mwsmedia,

It is possible.

Make a container and set its “display” to “block”. Within that container put another container (I set its background to blue) and a text element.

Then, on the blue container, use the following custom css:

root {
  float: left;
}

That should do it.

1 Like

Thanks! I feel a little silly… of course it’s a CSS thing, not a Bricks thing. I was so deep into working things out in Bricks I think I forgot some basics for a minute there…!

1 Like