I am using HTML. I have divided the page into two columns: inner1 and inner2.
Inner1
has some data, it does not have the problem it has in column1.Inner2
has a problem: since Inner2 is divided into two rows [in the same column2]point2
- It has variable data[row -1]another_new
- It has fixed data[row-2]
HTML:
<div id="outer">
<div id="inner1">
<div id="point1">
</div>
<div id="response">
</div>
</div>
<div id="inner2">
<div id="point2"><!-- varaiable data-->
</div>
<div id="another_new"><!-- fixed data-->
</div>
</div>
</div>
CSS:
#inner1{
float : left;
width :61%;
}
#inner2{
float :right;
width :39%;
}
Now how to display the page? Point2
data should not overlap on another_new
data. Any idea?