Sized Static Block left offset : position static « Layout « HTML / CSS






Sized Static Block left offset

 

<!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>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title></title>
<style type="text/css" title="text/css">
* .grandContainer {
  position: relative;
  height: 295px;
  width: 600px;
  border: 2px solid black;
}

* .parent {
  margin: 10px;
  padding: 10px;
  padding-top: 0;
  border: 1px solid black;
}

* .common {
  padding: 5px;
  border: 5px solid black;
}

div.common span {
  margin-left: -60px;
  border: 1px dotted black;
}

span.common span {
  margin-left: 30px;
  border: none;
}

#sizedStaticBlock {
  position: static;
  text-align: left;
  margin-top: 5px;
  width: 400px;
  margin-left: 50px;
  margin-right: auto;
  background-color: gold;
}
</style>
</head>
<body>

<div class="grandContainer">Positioned Grandparent 
  <div class="parent">Non-positioned Parent 
    <div id="sizedStaticBlock" class="common"><span>Sized Static Block: +50px</span></div> 
  </div>
</div> 

</body>
</html>

 








Related examples in the same category

1.static position and relative position
2.Using Static Positioning
3.width:auto stretches a static block
4.setting width to a value, margin-left to auto, and margin-right to auto centers a static block
5.Static Positioned
6.use position:static to unposition an element so that it is rendered normally in the flow.
7.Stacking Context
8.Elements flow automatically one after the other in lines and blocks
9.Stretched Absolute
10.Stretched Static Block left offset
11.Sized Static Block centered aligned
12.Stretched Static Block center aligned