Absolute Box : position absolute : Layout HTML CSS TUTORIALS


HTML CSS TUTORIALS » Layout » position absolute »

 

Absolute Box


 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
* .container {
  position: relative;
}

* .box {
  position: absolute;
  overflow: auto;
  visibility: visible;
  z-index: auto;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 220px;
  height: 100px;
  margin: 10px;
  padding: 10px;
  background: red;
}

* .before {
  width: 100px;
  height: auto;
  left: 400px;
  right: auto;
  top: 100px;
  bottom: auto;
    background: yellow;
}

* .after {
  width: 100px;
  height: auto;
  left: auto;
  right: 0px;
  top: auto;
  bottom: 0px;
  background: blue;  
}
</style>
</head>
<body>


<div class="container"
    <div>BEFORE</div> 
    <div class="box before">ABSOLUTE BEFORE</div> 
    <div class="box">this is a test. this is a test. </div> 
    <div class="box after">ABSOLUTE AFTER</div> 
    <div>AFTER</div> 
</div> 
</body>

</html

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Layout
» position absolute