html - Center absolute position div in windowed mode? -


i centered absolute div:

<div style=" width:800px; height:190px; position:absolute; left:50%; margin-left:-400px; border-width:10px; border-style:solid;"> </div> 

in maximized mode, works normally. when width of browser smaller div, can't scroll left of div, cut. tested on chrome , ie9

how can center absolute div in windowed mode? reason out of alignment?

you'll want change div's width , height percent values , center it, this:

top:0; left:0; right:0; bottom:0; margin:auto; position:absolute; 

Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -