Results 1 to 4 of 4

Thread: Center all content in browser window

  1. #1
    Join Date
    Jun 2005
    Location
    San Jose, CA (home); Rochester, NY (school)
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Center all content in browser window

    Is there a way to center ALL content of an html document (both vertically and horizontally) using css? I don't want to use absolute positioning because I want it to be centered regardless of screen/window size. I know how to do this with tables, but I'm trying to break away from that and force myself to use css whenever possible...

  2. #2
    Join Date
    Apr 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Float

    Instead of using absolute positioning try using float:

    here is a sample of the code
    Code:
    .pullquote { float: center;}

  3. #3
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by jcschott
    Instead of using absolute positioning try using float:

    here is a sample of the code
    Code:
    .pullquote { float: center;}
    There is no center value for the float property. You either float left, right or not at all (none).


    Quote Originally Posted by starlameris
    Is there a way to center ALL content of an html document (both vertically and horizontally) using css?
    There are various methods for centring, but poor CSS support in certain browsers make centring (vertically, especially) difficult. This has been discussed before.

    Good luck,
    Mike
    Last edited by mwinter; 07-21-2005 at 09:00 PM. Reason: Typo

  4. #4
    Join Date
    Jun 2005
    Location
    San Jose, CA (home); Rochester, NY (school)
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    There are various methods for centring, poor CSS support in certain browsers make centring (vertically, especially) difficult. This has been discussed before.

    Good luck,
    Mike[/QUOTE]


    Thanks for directing me. When I searched the forum I got nothing.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •