I have DIVs that are styled as interactive icon widgets, and I want to mix them with text like IMGs. I understand that DIVs aren't allowed in Ps. However, is it possible to make the DIVs look like part of the text? I would use SPAN or I, but a 3rd-party requirement forces me to use DIVs.
The following code
<p>Text before DIV</p>
<div class="my_icon"></div>
<p>Text after DIV</p>
Should ideally look similar to:
<p>Text before DIV<img class="my_icon">Text after DIV</p>