Ik heb een paar tabellen... en ik wil in de middelste tabel een achtergrond plaatje in het midden hebben en hij moet niet herhalen..
dit is mijn source:
Hier werkt het wel:
Hier werkt ie niet meer:
De hele tabel raakt fucked up
Hoe kan dat nou..?
dit is mijn source:
Hier werkt het wel:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <head>
<STYLE TYPE="text/css">
<!--
.table-image
{
background-image: url(plaatje.gif);
background-repeat: no-repeat;
background-position: center;
}
-->
</STYLE>
<title></title>
</head>
<p> </p>
<div align="left">
<table border="1" width="663" height="455" class="table-image" bgcolor="#8895B3">
<tr>
<td width="663" height="455"></td>
</tr>
</table>
</div> |
Hier werkt ie niet meer:
De hele tabel raakt fucked up
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| <html>
<head>
<STYLE TYPE="text/css">
<!--
.table-image
{
background-image: url(plaatje.gif);
background-repeat: no-repeat;
background-position: center;
}
-->
</STYLE>
<title>Test</title>
</head>
<body bgcolor="#707D9C">
<div align="center">
<table class="table-image" border="0" width="708" cellspacing="0" cellpadding="0">
<tr>
<td width="166" height="118" colspan="4" background="../images/top_links.gif" valign="top"><br>
<br>
</td>
<td width="542" height="118" colspan="2" background="../images/top.gif" valign="top"> </td>
</tr>
<tr>
<td width="141" height="44" background="../images/top_links2.gif" colspan="3" valign="top"> </td>
<td width="25" height="44" bgcolor="#8895B3" valign="top"></td>
<td width="525" bgcolor="#8895B3" valign="top"><br>
</td>
<td width="12" rowspan="2" background="../images/bg_rechts.gif" valign="top"></td>
</tr>
<tr>
<td width="109" background="../images/bg_links.gif" valign="top"> </td>
<td width="6" background="../images/schaduw.gif" valign="top"> </td>
<td width="26" bgcolor="#8895B3" valign="top">
<td width="25" bgcolor="#8895B3" valign="top"></td>
<td width="525" bgcolor="#8895B3" valign="top"><br>
</td>
</tr>
<tr>
<td width="708" height="25" colspan="6" background="../images/bg_onder.gif" valign="top"></td>
</tr>
</table>
</div>
</html> |
Hoe kan dat nou..?