HTML/CSS wrapping problems -
can me wrapping stuff... when resized browser window starts move around. managed fix one:
#wrapper { margin-left:auto; margin-right:auto; width:960px; }
but website tiny. want full screen, not 960px width.. when make width , height auto, starts move again. do?
there problem styling, use percentage every measure, means adapt position based on parent side, parent window size here.
so it's normal everthings moving if don't limit wrapper width.
you can use min-width handle this.
#wrapper { margin: 0 auto; min-width:960px; }
Comments
Post a Comment