This is my Html,
<div id="wrapper" class='common'>
<div id="left" class='common'>Menu I Menu II Menu III Menu IV</div>
<div id="right" class='common'>hello world..hello world..hello world..
hello world..hello world..hello world..hello world..hello world..hello world..
hello world..hello world..hello world..hello world..hello world..hello world..
hello world..hello world..hello world..hello world..hello world..hello world..
hello world..hello world..hello world..hello world..hello world..hello world..
hello world..hello world..
</div>
</div>
and this is my CSS,
#wrapper {
overflow:hidden;
padding:3px;
}
#right {
float:right;
width:70%;
}
#left {
float:left;
width:29%;
}
.common {
border:solid 1px #000;
}
And here you can see the demo
of it.
I am just trying to make the div with id left to be expandable based on the content of the div which is having the id right. i just tried to make that on my own but i failed. can anybody help me out by expelling some clues..?