简体   繁体   中英

Horizontal scrolling doesn't show up when I resize browser

I am building out a page. I noticed that when I resize the browser to see how it looks in a smaller window, the horizontal scroll bar doesn't show up.

This is the only css code I have for the body:

body {
font-family:Helvetica, Arial, sans-serif;
margin:0;
background-image:url(img/paper-footerbg.png);
background-attachment:scroll;
background-repeat:repeat-x repeat-y;

}

Here is a link to the page I am building out, http://taghomecaremarketing.com/test/theadamgroup/

Any help is appreciated. Thanks.

In your css for container div's, remove overflow: hidden

#headerBox, #mainBox, #subBox, #footerBox

Surely, you will encounter some other problems, but that's the answer ...

Or add overflow:auto. or overflow:auto!important;

If that does work and brings up a scroll on the x and y axis. Then best to try overflow-x:auto;

Good luck!

You've set it to overflow: hidden ! This hides the content. Change it to overflow: auto , or better still, delete it!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM