Hi Leute,
habe folgendes Problem:
css.css
index.php
Warum wiederholt er beim div background2 nicht das Bild mit repeat-y? Wenn ich das im body mache, klappt es...
Danke für die Hilfe
habe folgendes Problem:
css.css
Code:
body {
font: 95% Verdana, Arial, Helvetica, sans-serif;
color: #000;
background: #50493D url(bg_l.gif) top left repeat-y;
}
#background2{
background: url(bg_r.gif);
background-repeat: repeat-y;
top: 840px;
left: 800px;
width: 200px;
height: 140px;
position: absolute;
}
index.php
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">
<head>
<link rel="stylesheet" type="text/css" href="css.css" />
</head>
<body>
<div id="background2"></div>
</body>
</html>
Warum wiederholt er beim div background2 nicht das Bild mit repeat-y? Wenn ich das im body mache, klappt es...
Danke für die Hilfe