CSS th witte streep
Illustratie zegt in dit geval meer dan woorden :-)
Klik
Ik heb het met een cirkel aangeduid, er is een spatie, die ik niet wil. Ik vind alleen niet direct een oplossing om ze weg te krijgen.
HTML & CSS:
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
48
49
50
51
52
53
54
55
56
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style type="text/css">
<!--
table {
width: 100%;
border: 0;
}
tr {
width: 100%;
border: 0;
}
th,td {
background-color: #F9F9F9;
text-align: left;
font-family:"Lucida Grande", verdana, arial, helvetica, sans-serif;
font-weight:700;
font-size:13px;
color:#545454;
margin:0;
padding: 5px 10px 5px 10px;
border:0;
vertical-align: center;
border-bottom: 1px solid #d3d3d3;
}
td {
background-color: #FFF;
font-weight:400;
font-size:12px;
border-bottom: 0;
}
/*
p{font-family:"Lucida Grande", verdana, arial, helvetica, sans-serif;font-weight:400;font-size:12px;color:#000;margin:0;padding: 10px 25px 10px 25px}
*/
-->
</style>
</head>
<body>
<table>
<tr>
<th>Gebruikersnaam</th>
<th>E-mailadres</th>
<tr>
<tr>
<td>hoi</td>
<td>hoi</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<title>Untitled</title>
<style type="text/css">
<!--
table {
width: 100%;
border: 0;
}
tr {
width: 100%;
border: 0;
}
th,td {
background-color: #F9F9F9;
text-align: left;
font-family:"Lucida Grande", verdana, arial, helvetica, sans-serif;
font-weight:700;
font-size:13px;
color:#545454;
margin:0;
padding: 5px 10px 5px 10px;
border:0;
vertical-align: center;
border-bottom: 1px solid #d3d3d3;
}
td {
background-color: #FFF;
font-weight:400;
font-size:12px;
border-bottom: 0;
}
/*
p{font-family:"Lucida Grande", verdana, arial, helvetica, sans-serif;font-weight:400;font-size:12px;color:#000;margin:0;padding: 10px 25px 10px 25px}
*/
-->
</style>
</head>
<body>
<table>
<tr>
<th>Gebruikersnaam</th>
<th>E-mailadres</th>
<tr>
<tr>
<td>hoi</td>
<td>hoi</td>
</tr>
</table>
</body>
</html>
Gewijzigd op 22/04/2011 18:46:16 door Write Down
foutje op lijn 53 :-D
- Aar - op 22/04/2011 18:32:12:
foutje op lijn 53 :-D
Indeed, maar dat lost het probleem niet op ;-)
op lijn 49 ook niet </tr> ?
Vincent Huisman op 22/04/2011 18:57:04:
border-collapse:collapse;
Toevoeging op 22/04/2011 18:57:11:
http://www.w3schools.com/css/css_table.asp
Toevoeging op 22/04/2011 18:57:11:
http://www.w3schools.com/css/css_table.asp
Bedankt, dat was het ja. Wat vergeet een mens toch rap.