code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| css
#Navigate {
position: absolute; top: 65px; left:0; height: 24px; width: 1000px; margin-top: 1px;
}
#Navigate #Home a {
width: 53px; height: 18px; background-image: url("buttons/h1.gif"); background-repeat: no-repeat;
}
#Navigate #Home a:hover {
width: 53px; height: 18px; background-image: url("buttons/h2.gif"); background-repeat: no-repeat;
}
html
<div id="Navigate">
<ul>
<li id="Home"><a href="index.html"></a></li>
</ul>
</div> |
Wanneer ik de style inline gebruik gaat het goed, wanneer ik hem in een externe stylesheet zet niet.
Wat zie ik over het hoofd of wat doe ik verkeer?