Zie http://home.wanadoo.nl/r.rubingh/GOT/
Mijn probleem is die dubbeldikke lijn naast Home, en Contact. Als ik de breedte van #header en #content 1 pixel verklein, schuift Contact naar onderen
Weet iemand wat ik fout doe ?
Het is vast iets heel simpels, maar ik vindt het niet. Ik heb het aan de linkerkant wel voor elkaar gekregen met een margin-left: -1 oid maar de rechterkant lukt niet.
CSS
HTML
Mijn probleem is die dubbeldikke lijn naast Home, en Contact. Als ik de breedte van #header en #content 1 pixel verklein, schuift Contact naar onderen
Weet iemand wat ik fout doe ?
Het is vast iets heel simpels, maar ik vindt het niet. Ik heb het aan de linkerkant wel voor elkaar gekregen met een margin-left: -1 oid maar de rechterkant lukt niet.
CSS
Cascading Stylesheet:
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
| #menu { float: left; } #menu ul { margin: 0; padding: 0; list-style: none; } #menu li { display: inline; } #menu a { float: left; width: 128px; height: 25px; background: #FFFFFF; border-right: 1px solid #000000; border-bottom: 1px solid #000000; text-align: center; text-decoration: none; color: #626262; font-weight: bold; font-size: 17px; padding-top: 5px; } #menu a:hover { width: 128px; height: 25px; font-size: 17px; color: #fe46ff; } #menu .first a { border-left: 1px solid #000000; } #content { margin: 0 auto; background: #ffffff; width: 775px; border-left: 1px solid; border-right: 1px solid; } /* <SNIP> Gelieve je te beperken tot RELEVANTE code */ |
HTML
HTML:
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Metamorphosis Design Free Css Templates</title> <meta name="keywords" content="" /> <meta name="description" content="" /> <link href="styles.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="content"> <!-- header begins --> <div id="header"> <div id="menu"> <ul> <li class="first"><a href="#" title="">Home</a></li> <li><a href="#" title="">Blog</a></li> <li><a href="#" title="">Gallery</a></li> <li><a href="#" title="">Friends</a></li> <li><a href="#" title="">About</a></li> <li><a href="#" title="">Contact</a></li> </ul> </div> </div> <!-- header ends --> <!-- content begins --> <!-- <SNIP> Gelieve je te beperken tot RELEVANTE code --> </body> </html> |
[ Voor 85% gewijzigd door een moderator op 03-03-2008 16:53 . Reden: Overbodige code verwijderd ]