z-index
Exemplo:
<html>
<head>
<style type="text/css">
<!--
#box1{
position: absolute;
left: 100px;
top: 100px;
z-index: 1;
}
#box2{
position: absolute;
left: 130px;
top: 130px;
z-index: 2;
}
#box3 {
position: absolute;
left: 160px;
top: 160px;
z-index: 3;
}
#box4 {
position: absolute;
left: 190px;
top: 190px;
z-index: 4;
}
-->
</style>
</head>
<body>
<div id="box1">
<img src="/css1.jpg" width=150 height=150 border=1>
</div>
<div id="box2">
<img src="/css2.jpg" width=150 height=150 border=1>
</div>
<div id="box3">
<img src="/css3.jpg" width=150 height=150 border=1>
</div>
<div id="box4">
<img src="/css5.jpg" width=150 height=150 border=1>
</div>
</body>
</html>
Veja como ficou:
visibility
visibility: hidden | visible
Exemplo:
IMG {
visibility: hidden;
} // torna invisíveis todas as imagens
| < Anterior |
|---|
Propriedades do CSS visibility e z-index 



