Ik heb een tabel met 3 rijen met telkens een andere achtergrond zodanig het geheel een mooie ronde vorm vormt. In mozilla was het goed maar in IE zijn er tussen de cellen een witte lijn.
Weet iemand een oplossing?
Pagina: http://www.datinglovers.com/inc_header2.php
Stylesheet:
Weet iemand een oplossing?
Pagina: http://www.datinglovers.com/inc_header2.php
edit:
td class van bovenste cel: td_site_top
td class van middenste cel: td_site_topmenu
td class van onderste cel: td_site_bottom
td class van bovenste cel: td_site_top
td class van middenste cel: td_site_topmenu
td class van onderste cel: td_site_bottom
Stylesheet:
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
| body
{
background-color : #FFFFFF;
font-size: 8pt;
font-family: Verdana, Helvetica, sans-serif;
scrollbar-face-color: #e5e5e5;
scrollbar-shadow-color: #e5e5e5;
scrollbar-highlight-color: #ffffff;
scrollbar-3dlight-color: #d4d4d4;
scrollbar-darkshadow-color: #acacac;
scrollbar-track-color: ##efefef;
scrollbar-arrow-color: #919191;
margin: 0px;
padding: 0px;
}
TABLE
{
color: #000000;
font-family: Verdana, Helvetica, sans-serif;
font-size: 8pt;
}
A.menu_top:link
{
color: #000000;
font-weight: bold;
text-decoration: none;
font-size: 9pt;
}
A.menu_top:visited
{
color: #000000;
font-weight: bold;
text-decoration: none;
font-size: 9pt;
}
A.menu_top:hover
{
color: #336699;
font-weight: bold;
text-decoration: none;
font-size: 9pt;
}
A.menu_top:active
{
color: #000000;
font-weight: bold;
text-decoration: none;
font-size: 9pt;
}
A.menu_top_sub:link
{
color: #000000;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
}
A.menu_top_sub:visited
{
color: #000000;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
}
A.menu_top_sub:hover
{
color: #336699;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
}
A.menu_top_sub:active
{
color: #000000;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
}
.td_site_top {
background-image: url(../v4/site_border_top.gif);
background-position: left top;
background-repeat: no-repeat;
overflow: hidden;
height: 10;
}
.td_site_bottom {
background-image: url(../v4/site_border_bottom.gif);
background-position: left top;
background-repeat: no-repeat;
overflow: hidden;
height: 10;
}
.td_site_topmenu {
background-image: url(../v4/site_border_middle.gif);
background-position: left top;
background-repeat: repeat;
overflow: hidden;
valign: top;
padding-left: 30;
} |
[ Voor 4% gewijzigd door kokorico op 24-08-2004 23:40 ]