For WP 2.9, I can't seem to figure out how to add this to a post. I am looking for a magic button I suppose, I know I can do it in HTML but want to do it after certain h2 tags and img tags to correct formatting problems in visual mode.
I want to add:
<div class="clear"> </div> to fix word wrap around other elements and:
<p class="space"> </p> to add space between some elements like the text of a post and footnotes.
CSS is:
.clear { clear: both; }
.space {line-height:1em; font-size: 1em; }
Note that they work great, I just want a simple way to do it.