hoogte tussen cellen
Kan iemand me zeggen welke de scriptcode is om de hoogte tussen cellen te bepalen.
Ik heb nu een tabel met cellen gemaakt maar heb weet niet welke code ik moet toevoegen om de hoogte van de cellen te bepalen:
<body>
<table width="277" border="0" cellpadding="0" cellspacing="0">
<tr>
<th colspan="2" valign="top" bgcolor="#FFFFFF" class="style1" scope="row" border="0" cellspacing="0" cellpadding="0">
<div align="center">GPS nodig ? </div></th>
</tr>
<tr>
<th width="97" height="0" valign="top" bgcolor="#cc99ff" class="style1" scope="row"></th>
<th width="180" valign="top" bgcolor="#cc99ff" class="style1" scope="row"></th>
</tr>
<tr>
<th valign="top" bgcolor="#cc99ff" class="style1" scope="row"></th>
<th valign="top" bgcolor="#cc99ff" class="style1" scope="row"><div align="left" class="style8">
<span class="style10"><FONT face="Verdana, Arial, Helvetica, sans-serif"
size=-1>nieuws</FONT></span><FONT face="Verdana, Arial, Helvetica, sans-serif"
size=-1></FONT><FONT face="Verdana, Arial, Helvetica, sans-serif"
size=-1><BR>
<span class="style6"><FONT size=-2>nieuws, vers van de pers, <BR>
heet van de naald, inside<BR>
info, weetjes, primeurkes,<BR>
breaking news, </FONT></span></FONT></div></th>
</tr>
<tr>
<th valign="top" bgcolor="#cc99ff" class="style1" scope="row"></th>
<th valign="top" bgcolor="#cc99ff" class="style1" scope="row"></th>
</tr>
<tr bgcolor="#FFFFFF">
<th valign="top" class="style1" scope="row"></th>
<th valign="top" class="style1" scope="row"></th>
</tr>
<tr>
<th valign="top" bgcolor="#cc99ff" class="style1" scope="row"></th>
<th valign="top" bgcolor="#cc99ff" class="style1" scope="row"><div align="left">
<span class="style10"><FONT face="Verdana, Arial, Helvetica, sans-serif"
size=-2>blog</FONT></span><FONT face="Verdana, Arial, Helvetica, sans-serif"
size=-2></FONT><FONT face="Verdana, Arial, Helvetica, sans-serif"
size=-2><BR>
<span class="style6">als ik kolk hier vanbinnen<BR>
en erupteer, dan vindt u de<BR>
lava van letters in mijn blog-bladzijden weer...</span></FONT></div></th>
</tr>
<tr>
<th colspan="2" valign="top" bgcolor="#cc99ff" class="style1" scope="row"></th>
</tr>
</table>
</body>
Cellpadding en cellspacing zijn hiervoor bedoeld.
Ik heb nu de celpadding op "10" gezet, ik kan nu idd de hoogte aanpassen, maar.... hoe krijg ik nu dat wat lijntje tussen de 2 cellen ook in die andere kleur ?
<table width="277" border="0" cellpadding="10" cellspacing="0">
http://www.dannypauly.be/test.php
Met dank
De tabel een achtergrond kleur geven?
Edit:
niet goed gelezen, sorry. Het ging om de hoogte TUSSEN de cellen. Ook dat hoor je trouwens in CSS te doen...
Zie aangepaste voorbeeld.
niet goed gelezen, sorry. Het ging om de hoogte TUSSEN de cellen. Ook dat hoor je trouwens in CSS te doen...
Zie aangepaste voorbeeld.
De goede manier is met CSS. Een voorbeeld:
Code (php)
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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
table {
border: 1px solid red;
}
td {
border: 1px solid blue;
height: 100px;
width: 200px;
margin:5px;
}
</style>
</head>
<body>
<table>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
table {
border: 1px solid red;
}
td {
border: 1px solid blue;
height: 100px;
width: 200px;
margin:5px;
}
</style>
</head>
<body>
<table>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
Gewijzigd op 01/01/1970 01:00:00 door Jan Koehoorn