position relative: top left : position relative « Layout « HTML / CSS






position relative: top left

 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <title></title>
        <style type='text/css'>
            div {
                position: relative;
                padding: 10px;
                border: 1px solid black;
                opacity: 0.7;
                background: #ccc;
            }
            #div1 {
                top: 0;
                left: 0;
            }
            #div2 {
                top: 20px;
                left: 20px;
            }
        </style>
    </head>
    <body>
        <div id='div1'>
            This is the text of the first div.
            This is the text of the first div.
        </div>
        <div id='div2'>
           This is the text of the second div.
           This is the text of the second 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 and absolute
6.Centre an element of no specified width
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.