Hallo,
ich habe ein Frage: wie kriege ich es hin, dass der unterste Layer (des unterste div Tag im Code) einen Abstand von 30px zum unteren Browserrand einhaelt? Ich weiss vorher nicht, wie hoch er wird. bottom: 30px geht nicht.
Wie muss ich das loesen? Ich bin CSS Neuling.
Code:
<html>
<head>
<title>Testground</title>
</head>
<body style = 'background-image: url(bg.png);
background-repeat: repeat'>
<div style = 'position: absolute; top: 100px; left: 25px'>
<div style = 'position: absolute; top: 0px; left: 0px'><a href =
''><img src = 'Link1.png'/></a></div>
<div style = 'position: absolute; top: 80px; left: 0px'><a href =
''><img src = 'Link2.png'/></a></div>
<div style = 'position: absolute; top: 163px; left: 0px'><a href
= ''><img src = 'Link3.png'/></a></div>
<div style = 'position: absolute; top: 257px; left: 0px'><a href
= 'http://www.schoolyard.ch'><img src = 'Link4.png'/></a></
div>
</div>
<div style = 'position: absolute; top: 130px; left: 210px; width: 400px; background-image: url(bg2.png); background-repeat: repeat'>
<div style = 'color: yellow; font-family: Courier; text-align: justify; margin-top: 15px; margin-left: 15px; margin-right: 15px; margin-bottom: 15px'>Hallo! Ich bin ein völlig unsinniger Text, der nur ein wenig Platz ausfüllen soll. </div>
</div>
</div>
</body>
</html>