Nieuw lid |
|
ik wil een div "workspace" die 100% breed is en 150px top en 20px bottom afblijft
in deze div wil ik een foto earth rechtsonder plaasen, foto is kleiner dan de div
probleem div komt niet tot op 20px van het scherm en de foto is ook niet volledig onderaan in de div
stukje van het css
#earth { position:relative; bottom:0px; left:0px; z-index:-5 width:683px; height:432px;}
#workspace { position: fixed; width: 100%; top: 150px; bottom: 20px; overflow:hidden; COLOR: #fff; background-color: #009ACF;}
#earth { position:relative; bottom:0px; left:0px; z-index:-5 width:683px; height:432px;} #workspace { position: fixed; width: 100%; top: 150px; bottom: 20px; overflow:hidden; COLOR: #fff; background-color: #009ACF;}
stukje html
<div id="workspace">
start workspace
</p>
<img src="images/earth1.jpg" id="earth">
<p>
start workspace <img src="images/earth1.jpg" id="earth">
groeten
NaVaNaX
|