
de persoon die dit voor mij in tabellen kan zetten (dus de html code) is echt een held
ik krijg dit echt niet voor elkaar

9000Wp o/w SolarEdge SE6K - Panasonic 5kW bi-bloc - gasloos sinds 17-7-2023
1
| <? <table border="1"> <tr> <td height="214" width="226" colspan="2" rowspan="2">1</td> <td colspan="2" width="574" height="107">2</td> </tr> <tr> <td width="49" height="107">3</td> <td rowspan="3" width="425" height="307>4</td> </tr> <tr> <td width="125" height="100">5</td> <td colspan="2" rowspan="2" width="150" height="200">6</td> </tr> <tr> <td width="125" height="100">7</td> </tr></table>?> |
Verwijderd
Intentionally left blank
Verwijderd
en hoe moet dat danOp zaterdag 25 mei 2002 12:26 schreef crisp het volgende:
De enige manier waarop ik dit soort tabellen in alle browser goed kan laten renderen is door er een 'rand' omheen te leggen met cellen die geen row- of colspans hebben; zoals je in het eerder genoemde topic kan zien kan een syntacties goede tabel nog volkomen verkeerd gerenderd worden omdat browsers (foute) aannames maken om de tabel zo snel mogelijk te renderen.
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
| <html>
<head>
</head>
<body>
<table border=1 cellspacing=0 cellpadding=0>
<tr>
<td height="1" width="1">[img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img]
<td height="110" width="1">[img]"spacer.gif"></td>
[/img]1</td>
<td height="110" width="475" colspan="2" rowspan="1" align="center">2</td>
<td height="110" width="1">[img]"spacer.gif"></td>
[/img]
<tr>
<td height="100" width="1">[img]"spacer.gif"></td>
[/img]3</td>
<td height="360" width="410" colspan="1" rowspan="3" align="center">4</td>
<td height="100" width="1">[img]"spacer.gif"></td>
[/img]
<tr>
<td height="135" width="1">[img]"spacer.gif"></td>
[/img]5</td>
<td height="250" width="135" colspan="2" rowspan="2" align="center">6</td>
<td height="135" width="1">[img]"spacer.gif"></td>
[/img]
<tr>
<td height="115" width="1">[img]"spacer.gif"></td>
[/img]7</td>
<td height="115" width="1">[img]"spacer.gif"></td>
[/img]
<tr>
<td height="1" width="1">[img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img][img]"spacer.gif"></td>
[/img]
</table>
</body>
</html> |
Intentionally left blank
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
| <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table border=0 cellspacing=0 cellpadding=0>
<tr>
<td height="110"></td>
<td height="210" width="210" colspan="2" rowspan="2" align="center" bgcolor="red">1</td>
<td height="110" width="475" colspan="2" rowspan="1" align="center" bgcolor="blue">2</td>
<td height="110"></td>
</tr>
<tr>
<td height="100"></td>
<td height="100" width="60" colspan="1" rowspan="1" align="center" bgcolor="white">3</td>
<td height="360" width="410" colspan="1" rowspan="3" align="center" bgcolor="yellow">4</td>
<td height="100"></td>
</tr>
<tr>
<td height="135"></td>
<td height="135" width="150" colspan="1" rowspan="1" align="center" bgcolor="green">5</td>
<td height="250" width="135" colspan="2" rowspan="2" align="center" bgcolor="purple">6</td>
<td height="135"></td>
</tr>
<tr>
<td height="115"></td>
<td height="115" width="150" colspan="1" rowspan="1" align="center" bgcolor="grey">7</td>
<td height="115"></td>
</tr>
<tr>
<td></td>
<td width="150"></td>
<td width="60"></td>
<td width="75"></td>
<td width="400"></td>
<td></td>
<tr>
</table>
</body> |