Volg de onderstaande video om te zien hoe je onze site als web-app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Zero Grav zei:We zitten hier niet in de 'west-side' dus laat die 'bro' maar lekker achterwege.
/* CSS Document */
a.link {
position: absolute;
background-image:url(bg.jpg);
background-repeat:no-repeat;
top: 10px;
left: 10px;
width: 100px;
height: 30px;
display: block;
}
a.link:hover {
position: absolute;
background-image:url(bg_hover.jpg);
background-repeat:no-repeat;
top: 10px;
left: 10px;
width: 100px;
height: 30px;
display: block;
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="opmaak.css">
</head>
<body>
<a href="home.html" class="link">home</a>
</body>
</html>

a {
width: 100px;
height: 25px;
display: block;
background-image: url("image.jpg");
background-position: 0 0; /* positie van de image: 0px 0px */
}
a:hover {
width: 100px;
height: 25px;
display: block;
background-image: url("image.jpg");
background-position: 0 25px; /* positie van de image: 0px 25px */
}
Obliv` zei:bekijk de post van bt belgium boven de uwe
in uw html heb je geen img tags meer nodig omda je img's al in je css staan
uw html code is identiek die dat bt belgium heeft gegeven!!