I have divs as follows:
upon resizing the window, the table in div3 is moving under the text of div1. How can I make it such a way that upon rezing the window, the table remains just next to the text and it doesn`t get moved below the text nor do they get resized.
<div id="Div1" >
<text> </text>
</div>
<div id="Div2" >
<div id="Div3" >
<table> </table>
</div>
<div id="Div4" >
</div>
<div id="Div5" >
</div>
</div>
css style
#Div2
{
float: left;
overflow: auto;
}
Maybe you should add width to
Div2And I don’t know what css rules applied to Div1, it can be important.