Below is a div element:
<DIV id=footerTop style="height:15%">
<DIV id=footerBottom>
<DIV id=footerBottomLeft>
<DIV id=footerBottomRight>
<IMG alt=img src="images/images.jpg">
</DIV>
<SPAN>
<UL><%= new java.text.SimpleDateFormat("yyyy").format(new java.util.Date()) %>blah blah!</UL>
</SPAN>
</DIV>
</DIV>
</DIV>
The span element is not being rendered properly in Chrome and Firefox, but works fine in Internet Explorer. In Chrome or Firefox it's printed without any space.
In the code above, the div containing the span has the following CSS settings that work in IE but not in Chrome:
#footerBottomLeft {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; BACKGROUND: #FFFFFF; PADDING-BOTTOM: 0px; MARGIN: 0px; VERTICAL-ALIGN: top; WIDTH: 100%; PADDING-TOP: 0px; HEIGHT: 100%; TEXT-ALIGN: left
}
Where text-align is set to left with some space in IE, but no space at all in Chrome.