vote up 0 vote down star

I'm a css noob, and though I want this DIV to resize when the window is resized, I don't want inner content to change the size of it.

flag

You should post some code – John Sheehan Mar 2 at 22:29
Thanks for the answers, all were good so I went with the guy with the least rep! – Paul Mar 2 at 22:44

4 Answers

vote up 2 vote down check

Use the overflow statement. e.g.

overflow: hidden; /* all content hidden as it spills over */

overflow: auto; /* Scroll bars appear on div when required to allow moving around */

overflow: scroll; /* Scroll bars will be present at all times */

link|flag
use /* for css comments */ – alex Mar 2 at 23:55
//why you ask? IE6 will ignore any commented declarations! // display:totally-messed-up – garrow Mar 3 at 12:58
Oops sorry about the //, was on a c# thing at the time – Richard Mar 4 at 13:00
vote up 0 vote down

Have you looked into CSS and the overflow directive? You can use this to tell the div to scroll or truncate/hide its content when the content is too large.

link|flag
vote up 1 vote down

Try using:

div {
  overflow: hidden;
}

Read more here.

link|flag
vote up 0 vote down

set overflow: hidden on the containing div

link|flag

Your Answer

Get an OpenID
or

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