Chris: Popup-Fenster

Beitrag lesen

Unten steht der Code den ich für ein kleines Popupfenster benutze
um Infos zum Link anzuzeigen.

Das funktioniert auch so weit.
Nur wenn das Popup-Fenster auftaucht schiebt er mir die restlichen Tabels nach unten.

#popup a span       { display:          none;
                      text-decoration:  none; }
#popup a:link       { color:            #FFFFBB;
                      text-decoration:  none; }
#popup a:visited    { color:            #FFFFBB;
                      text-decoration:  none; }
#popup a:hover      { border:           0;
                      cursor:           default;
                      color:            #FFFFBB;
                      text-decoration:  none; }
#popup a:hover span { display:          block;
                      position:         relative;
                      top:              10px;
                      left:             10px;
                      background:       #77AADD;
                      border:           1px solid #E5F4FF;
                      width:            150px;
                      height:           -50px;
                      padding:          15px;
                      z-index:          100;
                      text-decoration:  none;
                      color:            #FFFFBB;
                      font-weight:      normal; }

Bei der Version hab ich für TABLE und für TD eigene Atribute im Stylesheet vergeben - da hats auch noch funktioniert wies soll.
          <div id="popup">
            <TABLE class="configdescription">
              <TR>
                <TD class="configdescription"><A href="#">IP-Address:<span id="hideforprint">IP-Address of current Machine.</span></A></TD>
              </TR>
            </TABLE>
          </div>

Und beim jetzigen Code hab ich die Atribute vereint und nur für TABLE vergeben - und jetzt schiebt er mir den Rest nach unten sobald ich mit der Maus auf den Link fahre.
          <div id="popup">
            <TABLE class="configdescription">
              <TR>
                <TD><A href="#">IP-Address:<span id="hideforprint">IP-Address of current Machine.</span></A></TD>
              </TR>
            </TABLE>
          </div>

Kann mir wer sagen woran das liegt?