问题
i've built a site and I used min-width css
.body{
overflow:auto;
min-width:1600px;
}
but when It loads on smaller resolution it don't appear a horizontal scrollbar, what should I do to make horizontal scrollbar appear?
回答1:
You do not need to declare overflow
if you want the scroll bar to be present as this is the default behaviour
DEMO http://jsfiddle.net/kevinPHPkevin/kav7G/5/
You do need to set a height
otherwise it will not work
来源:https://stackoverflow.com/questions/18855961/css-min-width-no-horizontal-scroll-bar-is-showing