Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8720383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:01:43+00:00 2026-06-13T07:01:43+00:00

Is there really no way to center an absolutely/relatively positioned element without javascript? I

  • 0

Is there really no way to center an absolutely/relatively positioned element without javascript? I know it’s easy if the width of the element is dependable. Is there no CSS solution? Am I forced to resort to javascript?

<body><div class="parent"><div class="child">This stuff changes</div></div></body>

.child{margin:auto;position:absolute;left:50%} // this will center the left edge
.parent{width:800px;height:430px;margin:auto;overflow:hidden;}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T07:01:44+00:00Added an answer on June 13, 2026 at 7:01 am

    How about:

    .child {
        margin-left: auto;
        margin-right: auto;
        display: table;
    }
    

    Full demo html:

    <html>
    <head>
        <style type="text/css" media="screen">
        .child {
            margin-left: auto;
            margin-right: auto;
            display: table;
        }
        </style>
    </head>
    <body>
        <!-- middle marker to test alignment -->
        <table width="100%"><tr><td align="center" width="100%">|</td></tr></table>
        <!-- actual thing we're trying to center -->
        <div class="parent">
            <div class="child">123456789|987654321</div>
        </div>
    </body>
    

    (source: http://solstice.co.il/blog/2008-02-26/horizontally-centering-content-dynamic-width-css)

    For vertical centring also:

    <html>
    <head>
        <style type="text/css" media="screen">
        .parent {
            width:800px;
            height:430px;
            margin:auto;
            overflow:hidden;
            border:2px solid cyan;
            border-radius:25px;
            -moz-border-radius:25px; /* Firefox 3.6 and earlier */
        }
        .evilStepMother { /* i.e. comes between the parent and child */
            display: table-cell;
            vertical-align: middle;
            width: 800px; /* i.e. matches parent */
            height: 430px; /* i.e. matches parent */
            border:2px solid green;
            border-radius:25px;
            -moz-border-radius:25px; /* Firefox 3.6 and earlier */
        }
        .child {
            margin: auto;
            display: table;
            border:2px solid red;
            border-radius:25px;
            -moz-border-radius:25px; /* Firefox 3.6 and earlier */
        }
        </style>
    </head>
    <body>
        <!-- middle marker to test alignment -->
        <table width="100%"><tr><td align="center" width="100%">|</td></tr></table>
        <!-- actual thing we're trying to center -->
        <div class="parent"><div class="evilStepMother">
            <div class="child">123456789|987654321</div>
        </div></div>
    </body>
    

    NB: the borders are just there to make it easier to see how things are laid out; the curvy corners are just nicer.

    (source: http://blog.themeforest.net/tutorials/vertical-centering-with-css/)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a really easy way I can take an array of JSON objects
Is there an easy way to rotate a picture around it's center? I used
Is there really no way to print an ascii string in assembly to standard
Is there a way to avoid the function round() when using Sweave/knitr? It's really
Is there a way to dynamically create a selectItem list? I dont really want
Simple question really, is there any programmatic way to over load the choose a
I'm relatively new to Lisp, and I was wondering if there really is an
Is there really a big difference between Eclipse 3.2 and 3.4? I am currently
Is there really a difference in these two calls? If you use getJSON, you
Am I missing something or there really is no support for generic object type

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.