DIV1 - below is inner div. This text is not in a block element.

p element inside Inner DIV

p element inside Inner DIV

DIV2 - below is inner DIV

H3 inside Inner DIV

h3 insideInner DIV

Stylesheet is as follows

#div1 {
    position:absolute;
    left:20px;
    width:300px;
    background-color:#ffffcc;
}

#div2 {
    position:absolute;
    left:340px;
    width:300px;
    background-color:#dddddd;
 } 

.innerdiv {
    position:relative; 
    left:20px;
    width:200px; 
    background-color:#ccccff; 
} 

p {
    border:1px dotted #666;
    margin: 30px;
    padding:10px;
}

h3 {
    border:1px dotted #666;
    margin: 10px;
    padding:10px;
}