Basically looking for a way to pull off CSS Shapes without using a polyfill.
I've got a <div/>
full of content. Just outside of this div I have a small <aside/>
component I need to have floated to the left and with the content wrapping around it, above, to the right and below. (See image below.) This isn't a simple float because the floated element won’t be aware of the beginning or ending of the wrapping content.
You'll see in the image below that the floated object appears to begin inside of the first paragraph. But the object must actually live outside of the content div in the DOM tree.
I know there is a CSS Shapes spec in the works, but don't believe it's supported anywhere yet.
Is it yet possible to pull something like this off without a CSS Shapes polyfill?