How to do margin: 0 auto 0 auto minus a few pixels with CSS?
Center using margin: 0 auto;
and move left using position: relative; left: -100px;
position: relative;
margin: 0 auto;
left: -100px;
Try this:
position:relative; left:-100px;
Center using margin: 0 auto;
and move left using position: relative; left: -100px;
position: relative;
margin: 0 auto;
left: -100px;
Try this:
position:relative; left:-100px;