Bianca: Div-Elemente richtig positionieren, schützen

Beitrag lesen

Hallo Gernot,

danke für Deinen Hinweis. Ich werde versuchen die von Dir genannten CSS-Eigenschaften in der Online-Hilfe zu verstehen und umzusetzen.

Anbei, falls Du noch etwas Geduld und Lust haben solltest, der Quellcode (auszugsweise).

{die HTML-Seite}

<body>
        <div id="logo_vertical"></div>
        <div id="logo_right"><img src="images/curve1.gif" /></div>

<div style="position: relative; padding-top: 50px; padding-left: 100px; left: 0px; top: 100px; margin- right: 300px; background-color: white;">

<table border="1">
                <tr>
                    <td style="width: 100px">
                    Inhalt
                    </td>
                    <td style="width: 100px">
                    inhalt
                    </td>
                    <td style="width: 100px">
                    inhalt
                    </td>
                </tr>
            </table>
        </div>

</body>

{das CSS-Dokument}

body
{
 padding: 0px; margin: 0px;
 border: 0px dashed black;
 background: white url(../images/stripe2.jpg) repeat-x;
 font-family: Verdana, Arial, sans-serif;
 width: 100%;
 height: 100%;
}

#logo_right
{
 position: absolute;
 top: 0px;
 right: -1px;
 border: 0px solid green;
 z-index: 2;

}

#logo_vertical
{
 border: 0px solid black;
 position: absolute;
 /*top: 0px;*/
 bottom: 0px;
 height: 150%;
 right:  -1px;
 width: 60px;
 background:  white url(../images/stripe_horiz.jpg) repeat-y;
 z-index: 1;
}

Danke Bianca