André: Link verschwindet nach oben

Beitrag lesen

Ich habe das Problem wie folgt lösen können :)

#shim  /*dies ist meine flexible Unterlegscheibe ;) */
        {visibility:hidden;
         width:100%;
         height:50%;
         margin-top:-200px;
         float:left;}

#center /* dies ist das zentrierte Element */
        {border:1px solid black;
         position: relative;
         margin-left:auto;
         margin-right:auto;
         width: 880px;
         height: 400px;
         clear:both;}

<body>
        <div id="shim"></div>
        <div id="center">zentriertes Zeugs</div>
</body>

Ciao
André