Horizontal scrollbar only appearing at bottom of page
问题 I have a page with the following HTML structure... <html> ... <body> <div class="wrapper"> ... </div> </body> </html> The .wrapper is being set at min-width: 1100px for reasons I won't go into. Therefore when the browser is resized to less than 1100px I want a horizontal scrollbar to appear. My CSS is as follows: html { overflow-x: scroll; height: 100%; } body { overflow: auto; } .wrapper { min-width: 1100px; margin: 0 auto; } For some reason the only horizontal scrollbar showing is one when