Jump to content

Centering Entire Page


Tura

Recommended Posts

Is there a way to center all the images on a page using CSS? I mean sort of like changing the font of page. If there isn't a way to do that, is there a way to just center everything on a page?... I mean using CSS because the HTML uses end tags, but I can't add things to the bottom fo the page.

Link to comment
Share on other sites

To center something you use "margin: 0 auto; ". If you want to center only all images(the center point is considered to be the center of their containg element, not the center of the page)you would do

img {margin: 0 auto;}

and for absolutely everything

body {margin: 0 auto;}

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...