Hey, I'm having some difficulty with CSS and IE6 compatibility.
URL: http://bit.ly/dlX7cS
Problem #1: I put a background image on the fieldset around Canada
and United States
. In IE6 and IE7, the background bleeds above the border-top of the fieldset.
So, I found a fix. It is applied only to IE browsers, and moves the legend up a few pixels, aligning the background correctly.
<!-- Fix: IE6/IE7, Legends -->
<!--[if lte IE 7]>
<style type="text/css">
fieldset {
position: relative;
}
fieldset legend {
position: absolute;
top: -0.5em;
left: 0;
}
</style>
<![endif]-->
This fixes IE7. But in IE6, it seems to make my legend for Canada
vanish completely. Any suggestions on how to fix it?