Control the stacking order of a float or an element in the normal flow.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<style type="text/css" media="Screen">
* .ontop {
z-index: 1;
background: red;
}
* .static {
position: static;
background: yellow;
}
* .relative {
position: relative;
background: gold;
}
* .absolute {
position: absolute;
z-index: auto;
background: blue;
color: white;
}
* .offset {
left: 20px;
top: auto;
background: pink;
}
</style>
</head>
<body>
<div class="relative">Before Relative Positioning
<p class="static">Static Block
<span class="static ontop">Static Inline on top</span></p>
<p class="static ontop">Static Block on top</p>
<p class="absolute">Absolute</p></div>
<div class="relative">After Relative Positioning
<p class="relative">Relative Block
<span class="relative ontop offset">Relative Inline on top</span></p>
<p class="relative ontop">Relative Block on top</p>
<p class="absolute">Absolute</p>
</div>
</body>
</html>
Related examples in the same category