Centre an element of no specified width : position relative « Layout « HTML / CSS






Centre an element of no specified width

 


<!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>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">

#wrapper{
  position:relative;
  width:70%;
  background:#ccc;
  position:relative;
  border:1px solid #000;
  height:200px;
}
#test{
    position:absolute;
    left:50%;
}
#testinner{
  position:relative;
  left:-50%;
  background:#aaa;
  border:1px solid #000;
}

</style>
</head>
<body>
<h1></h1>
<div id="wrapper"> 
  <div id="test"> 
    <div id="testinner"> 
      <p>This is some content width no specified width<br />for testing purposes</p>
    </div>
  </div>
</div>
</body>
</html>

 








Related examples in the same category

1.position:relative positions an element at an offset from its location in the normal flow.
2.Using Relative Positioning
3.relative position to the bottom and left
4.Relative position to the right and top
5.position relative: top left
6.position relative and absolute
7.Relative positioning of elements
8.Relative positioning uses left, top, and z-index to control the offset of the box.
9.Control the stacking order of a float or an element in the normal flow.
10.relative positioning
11.This element is offset from its original position.
12.element is positioned to the bottom left of the relatively positioned element.
13.Element is positioned to the bottom right of the relatively positioned element.
14.This element is positioned to the top right of the relatively positioned element.
15.This element is positioned to the top left of the relatively positioned element.