I am trying to stretch div as soon as some text is loaded.I am able to do that by giving min-height:140 px and height:100% to its parent container. But content in my div is crossing its parent container. How can I limit the inner div so that it will not cross its parent container.

Please help me as I am trying for it from so long.

thanks in advance

HP

link|improve this question

68% accept rate
some code will be a good way to show what you are trying to do – Kris Ivanov Feb 16 '11 at 17:34
feedback

2 Answers

up vote 2 down vote accepted

Use the overflow attribute in your CSS.

#myDiv {
    overflow:auto;
}

Depending on the width you assign, this will get the nested div to display a scrollbar once it's width exceeds that of its parent.

link|improve this answer
1  
To be fair +1 we had given the same answer but its always the matter of minutes on S.O. sorry you deserve that.Thats the only thing I could do for you. – Wasim Karani Feb 17 '11 at 15:24
@Wazzy, +1 right back at you, mate! – Mohamad Feb 17 '11 at 16:02
feedback

Check this out

overflow:auto;

link|improve this answer
@Mohammad: Thanks it worked:) – Gendaful Feb 16 '11 at 19:23
hmmm, you are talking to @Mohammad here while this is not his answer :) – Amr ElGarhy Feb 16 '11 at 23:48
1  
your answer also seems to be right – Aditya Feb 24 '11 at 7:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.