Hi Folks,
Whats the simplest way to centre a div vertically & horizontally?
TicTac
Printable View
Hi Folks,
Whats the simplest way to centre a div vertically & horizontally?
TicTac
I think this...Code:position:absolute;
top:50%; left:50%;
that will only set the upper left corner in the middle of the page. to center horizontally you use "margin-left:auto; margin-right:auto" and set the width of it. not sure how to center vertically.