vote up 0 vote down star

What keeps a div from extending horizontally past the edge of the screen when there are horizontal scroll bars?

The DIV's content will overflow out to the left but not the DIV itself.

What can make the div go all the way to the right?

Thanks

flag

3  
Could you please show your css on the body and the div element? – alexn Apr 21 at 20:46
Could you update this with some code? – Crises of Identity Sep 12 at 13:31

3 Answers

vote up 1 vote down check

For the div to expand out of the view pane you need it to have a width. If it doesn't have a width then it takes the width of it's container. When content is bigger than it's container (the div or body, etc.) then it behaves according to overflow, the default being visible.

options are:

overflow: visible;
overflow: hidden;
overflow: auto;
overflow: scroll;

http://www.w3schools.com/Css/pr_pos_overflow.asp

link|flag
vote up 0 vote down

I'm not sure I completely understand your question, but I'd look into the CSS overflow-declaration: http://www.quirksmode.org/css/overflow.html

link|flag
vote up 0 vote down

see if adding the clearfix class solves your problem, here's some information:

http://www.webtoolkit.info/css-clearfix.html

link|flag
I understand clearfix. This is something different. – Ronnie Overby Apr 22 at 12:11

Your Answer

Get an OpenID
or

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