Cindi Simonson schrieb:
I have a 3-col footer with a top 1px border.  What is happening in (so
far only in) IE 6 is when clicking (mouse down) on the one text link or
either of the two images, another top border appears over either one or
two of the columns.  Here's the link:
http://www.southeastmn.edu/cindi/temptest.shtml.

The fix is to add
_height:0;

to #footertop

Ingo


p.s.

but what is that bug? Never seen it. Looks like as if /*1,2,3,4*/ and the nesting divs are required, hmm.

In this minimal case, a position:relative would fix it too. The doubling of the green line when the link gets the focus is only visible next to the float.

#footertop {
        border: 1px solid green;  /*1 , test with 5px */
        line-height: 1.7em;    /*2, minimum: 1.1em*/
        background-color: white /*3 why? */
        }

#left {
        float: left;   /*4*/
        background: red;
        width:1em;
        }

<div id="footertop">
   <div>
        <div id="left"></div>

        <div><a href="#">Contact</a></div>
   </div>
</div>

A Magik Creeping Border? Anyone an idea?

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to