I would like to use WYMeditor, but I need to use css float properties on some elements. That's the easy part, but I also need to automatically add
- Code: Select all
<div style="clear: both"></div>
at the end of each container to prevent elements from standing out of the container area.
code can also be as follows:
- Code: Select all
<div class="clear"></div>
An example of what I wish to achieve (using paragraph container):
- Code: Select all
<p>
content
<div class="clear"></div>
</p>
I tried editing the JS file with no success, any hints?