HTML interesse |
|
Ik heb een simpele tabel gemaakt met html en ik wou de achtergrond plaatjes met css maken alleen het wil niet lukken
mijn html:
<html>
<head>
<title>PartyZone</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<center>
<table id="fullframe" cellpadding="0" cellspacing="0">
<tr>
<td id="full_1"></td>
<td id="full_2"></td>
<td id="full_3"></td>
</tr>
<tr>
<td id="full_7" colspan="3"><br><br><br><br></td>
</tr>
<tr>
<td id="full_4"></td>
<td id="full_5"></td>
<td id="full_6"></td>
</tr>
</table>
</center>
</body>
</html>
<html> <head> <title>PartyZone</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <center> <table id="fullframe" cellpadding="0" cellspacing="0"> <tr> <td id="full_1"></td> <td id="full_2"></td> <td id="full_3"></td> </tr> <tr> <td id="full_7" colspan="3"><br><br><br><br></td> </tr> <tr> <td id="full_4"></td> <td id="full_5"></td> <td id="full_6"></td> </tr> </table> </center> </body> </html>
Mijn css:
body
{
background-color: #e1e1e1;
}
#fullframe
{
width: 950px;
}
#full_1
{
background_image: url(images/image_01.jpg);
width: 21px;
height: 29px;
}
#full_2
{
background_image: url(images/image_02.jpg);
width: 908px;
height: 29px;
}
#full_3
{
background_image: url(images/image_04.jpg);
width: 21px;
height: 29px;
}
#full_4
{
background_image: url(images/image_06.jpg);
width: 21px;
height: 29px;
}
#full_5
{
background_image: url(images/image_07.jpg);
width: 908px;
height: 29px;
}
#full_6
{
background_image: url(images/image_09.jpg);
width: 21px;
height: 29px;
}
body { background-color: #e1e1e1; } #fullframe { width: 950px; } #full_1 { background_image: url(images/image_01.jpg); width: 21px; height: 29px; } #full_2 { background_image: url(images/image_02.jpg); width: 908px; height: 29px; } #full_3 { background_image: url(images/image_04.jpg); width: 21px; height: 29px; } #full_4 { background_image: url(images/image_06.jpg); width: 21px; height: 29px; } #full_5 { background_image: url(images/image_07.jpg); width: 908px; height: 29px; } #full_6 { background_image: url(images/image_09.jpg); width: 21px; height: 29px; }
De css link doet het wel want de achtergrond kleur word wel verranderd..
Ziet iemand de fout?
Alvast bedankt
|