I am practicing CSS and i am so confused how can i force my div element to be center (vertically and horizontally) at my page (mean which way or ways for cross browser compatibility)?
Best regards !
|
|
|
There are many methods :
CSS
2 . Center horizontally and vertically a single line of text CSS
3 . Center horizontal and vertical align of an element with no specific measure CSS
More here : Horizontal and Vertical Alignment in CSS |
|||||||||||
|
|
This site gives some options on vertically centering your div: http://www.jakpsatweb.cz/css/css-vertical-center-solution.html |
|||
|
|
|
This blog post describes two methods of centering a div both horizontally and vertically. One uses only CSS and will work with divs that have a fixed size; the other uses jQuery and will work divs for which you do not know the size in advance. I've duplicated the CSS and jQuery examples from the blog post's demo here: CSS Assuming you have a div with a class of .classname, the css below should work. The
jQuery
Here's a demo of the techniques in practice. |
|||||||
|
|
This isn't as easy to do as one might expect -- you can really only do vertical alignment if you know the height of your container. IF this is the case, you can do it with absolute positioning. The concept is to set the top / left positions at 50%, and then use negative margins (set to half the height / width) to pull the container back to being centered. Example: http://jsbin.com/ipawe/edit Basic CSS:
|
|||
|