html - How to make a page scroll horizontally -
how can make page scroll horizontally when page resized? have menu bar @ top of page, , when window resized, browser automatically wraps line, makes bar awkward. how can make page not automatically wrap?
if understand correctly, want page static size navigation not wrapped next line. concept violate the rules of responsive design. better alternative using @media queries , linking css handheld devices handle wrapping.
this said, can make body specific width in css:
body { width:1024px; }
Comments
Post a Comment