how can i make the scroll bar of the page appear when i zoom the page in?
How can i make the scroll bar of开发者_如何转开发 the page appear when I zoom in on the page?
I had a page contain tables and when I zoom in the page I can't see some information until I zoom out.
Why is the page not showing the horizontal scroll bar?
Put in your css:
overflow:auto;
You must add it to the desired target, i.e., the body or other specific element:
body {
overflow:auto;
}
#target {
overflow:auto;
}
First add a <div class="zoom"> your whole page goes here </div>
to your whole page.
Then put this on your css:
.zoom{
width:1500px;
}
change the pixels as you need. The it will work fine when you zoom in.
精彩评论