Using styles, want to place two divs in my web application side by side, like in stackoverflow left side portion is there na like that. i tried like
<div style="width:60%; " >
</div>
<div style="width:40%; ">
</div>
but the divs are coming next line to another div, i want the div come side by side with 60 and 40 % width. can you help me
Whilst I am not keen on the use of floats to align things…you can do this…which splits the screen across two div elements ( a bit like frames )