Element is positioned to the bottom right of the relatively positioned element. : position relative « Layout « HTML / CSS






Element is positioned to the bottom right of the relatively positioned element.

 


<!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' xml:lang='en'>
    <head>
        <title>Relative Positioning</title>
        <style rel='stylesheet' type='text/css'>

div {
    background: yellow;
    border: 1px solid black;
    margin: 0 20px;
}
div#relative {
    position: relative;
    height: 200px;
}

p#bottom-right {
    margin: 0;
    background: gold;
    border: 1px solid crimson;
    height: 50px;
    width: 200px;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
        </style>
    </head>
    <body>
        <div id='relative'>
            <p id='bottom-right'>
               this is a test. this is a test. 
            </p>
         </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.Centre an element of no specified width
8.Relative positioning of elements
9.Relative positioning uses left, top, and z-index to control the offset of the box.
10.Control the stacking order of a float or an element in the normal flow.
11.relative positioning
12.This element is offset from its original position.
13.element is positioned to the bottom left 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.