I'm working with a form that looks like this:
<rich:dataList var="var" value="#{bean}" styleClass="styleClass"><h:form>
<h:commandLink value="#{var.prop}" action="#{bean.action}">
<a4j:actionparam name="var" value="#{var.id}" assignTo="#{bea.sel}" />
</h:commandLink>
Everything seems to be fine in Firefox and IE 7. But, when I tested it in IE 8, it started creating empty text nodes just before the link. I attempted to solve this issue with CSS.
form {
display: block;
zoom : 1;
}
This solution did fix the problem in IE 7, however, the empty text nodes continued to cause issues in IE 8.