Set position of DIV to absolute, to bottom 50px, to left 100px : Div : Box Model HTML CSS TUTORIALS


HTML CSS TUTORIALS » Box Model » Div »

 

Set position of DIV to absolute, to bottom 50px, to left 100px


 

<html>
<head>
<title></title>
<style type="text/css">
.absolute {
 position: absolute;
 bottom: 50px;
 left: 100px;
}
</style>
</head>

<body>
  <div class="absolute">
  <p> in a div</p>
  </div>
</body>
</html>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Box Model
» Div