PHP beginner |
|
Hallo,
Hoe kan ik mijn achtergrond plaatje dat in een div staat verticaal in het midden van de pagina krijgen?
Ik gebruik deze code:
<style>
.backgroundimage {
background-attachment: fixed;
background-image: url(http://www.shamrock-maastricht.nl/thema/loader.gif);
background-repeat: no-repeat;
background-position:center;
height:100px;
width:100px;
position:absolute;
background-position:center top;
top:0px;
visibility: visible;
left: 580px;
}
</style>
<div class="backgroundimage"></div>
.backgroundimage { background-attachment: fixed; background-image: url(http://www.shamrock-maastricht.nl/thema/loader.gif); background-repeat: no-repeat; background-position:center; height:100px; width:100px; position:absolute; background-position:center top; top:0px; visibility: visible; left: 580px; } <div class="backgroundimage"></div>
|