I'm in need of a specific feature that IE supports, which can be clearly seen in action at
However, the issue arises as no other web browsers seem to support the particular attribute required for this functionality.
How can I achieve a similar effect on all browsers except IE? (The element in question needs to have a fixed position while everything around it is dynamic.)
I've attempted using the "shape-outside" CSS attribute: http://jsfiddle.net/uniqueID
-webkit-shape-outside: polygon(0px 280px, 100% 280px, 100% 500px, 0px 500px);
Unfortunately, the outcomes are inconsistent (with issues like disabled line breaks in Chrome) or not supported at all (in Firefox).
It seems like resorting to Javascript to manually adjust the DOM element's position within the document flow will be necessary. Is there a way to accomplish this solely with CSS?