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

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - IIFE: var vs this - is there any difference? -

r - Grow a ffdf data frame on disk gradually -