ChatGPT解决这个技术问题 Extra ChatGPT

How to center a "position: absolute" element

I'm having a problem centering an element that has the attribute position set to absolute. Does anyone know why the images are not centered?

body { text-align: center; } #slideshowWrapper { margin-top: 50px; text-align: center; } ul#slideshow { list-style: none; position: relative; margin: auto; } ul#slideshow li { position: absolute; } ul#slideshow li img { border: 1px solid #ccc; padding: 4px; height: 450px; }

  • Dummy 1
  • Dummy 2

you need to give ul#slideshow a fixed width...

S
Sven Eberth

If you have set a width you may use:

position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;

This is a much cleaner answer than the rest! Are there any caveats?
Smartest answer. I have just checked it and it works on all browsers. It does not work on IE8 but it works on IE>=9
Be sure to test in IE, this trick does not work if the element has a 'max-width' set in IE9
I personally prefer the syntax "margin: 0 auto; left: 0; right: 0;"
This quite simply does not work, unless a width is set. It might APPEAR to work if you have text-align:center on the parent and don't have a background on the absolute-positioned element, but put a background on it and you'll see it's actually taking the full width. The translateX(-50%) answer is the correct one.
H
Hashem Qolami

Without knowing the width/height of the positioned1 element, it is still possible to align it as follows:

EXAMPLE HERE

.child {
    position: absolute;
    top: 50%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */

    transform: translate(-50%, -50%); /* This is a shorthand of
                                         translateX(-50%) and translateY(-50%) */
}

It's worth noting that CSS Transform is supported in IE9 and above. (Vendor prefixes omitted for brevity)

Explanation

Adding top/left of 50% moves the top/left margin edge of the element to the middle of the parent, and translate() function with the (negative) value of -50% moves the element by the half of its size. Hence the element will be positioned at the middle.

This is because a percentage value on top/left properties is relative to the height/width of the parent element (which is creating a containing block).

While a percentage value on translate() transform function is relative to width/height of the element itself (Actually it refers to the size of bounding box).

For unidirectional alignment, go with translateX(-50%) or translateY(-50%) instead.

1. An element with a position other than static. I.e. relative, absolute, fixed values.


This should be the top answer!!
Fantastic! Best of the lot!
I have searched everywhere for an answer to this and a good explanation. This is the best answer out there and a great explanation too! Thanks.
Horizontal centering: position: absolute; left: 50%; transform: translateX(-50%);, vertical centering: position: absolute; top: 50%; transform: translateY(-50%);.
Just now i found that translate property, translate the element by the size of itself, No matter size of its parent.
S
Spencer O'Reilly

Centering something absolutely positioned is rather convoluted in CSS.

ul#slideshow li {
    position: absolute;
    left:50%;
    margin-left:-20px;

}

Change margin-left to (negative) half the width of the element you are trying to center.


When testing this it doesn't work when images are different sizes, and they still stack up on one another
Too hack-ish (as it almost always turns out with css). But awesome! :-)
I was tempted by the cleverness of some other answers, but only this one was reliable for me.
I had the same issue like Ryan, so I tried the second answer suggested by "baaroz" and it worked for me!!! and it support different resolutions also, since my main DIV have width in % and not PX
@Artsicle that's because the needed offset wasn't 20px --- left: calc(50% - Wpx/2) from my answer works, but requires width to be known - at which point the original css could have worked.
S
Sebin Simon

Div vertically and horizontally aligned center

top: 0;
bottom: 0;
margin: auto;
position: absolute;
left: 0;
right: 0;

Note : Elements should have width and height to be set


I don't know why this doesn't get more up voted. Works in all browsers including mobile browsers as far as I can tell. Seams more reliable in terms of support. It's simple, easy and clean...
This is a better answer. It only requires one div to make and has more use cases than calling left:50%;, top:50%; like the solution with 69+ votes
the best answer so far, any one coming here should check it !
The element also needs a height set for this to work.
this is perfect! in addition, simply add height: fit-content or width: fit-content to make it sizes according to its elements
W
Wesley Brian Lachenal

If you want to center an absolute element

#div {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width:300px; /* Assign a value */
    height:500px; /* Assign a value */
    margin:auto;
}

If you want a container to be centered left to right, but not with top to bottom

#div {
    position:absolute;
    left:0;
    right:0;
    width:300px; /* Assign a value */
    height:500px; /* Assign a value */
    margin:auto;
}

If you want a container to be centered top to bottom, regardless of being left to right

#div {
    position:absolute;
    top:0;
    bottom:0;
    width:300px; /* Assign a value */
    height:500px; /* Assign a value */
    margin:auto;
}

Update as of December 15, 2015

Well I learnt this another new trick few months ago. Assuming that you have a relative parent element.

Here goes your absolute element.

.absolute-element { 
    position:absolute; 
    top:50%; 
    left:50%; 
    transform:translate(-50%, -50%); 
    width:50%; /* You can specify ANY width values here */ 
}

With this, I think it's a better answer than my old solution. Since you don't have to specify width AND height. This one it adapts the content of the element itself.

Update as of April 23, 2021

It does not answer to OP's question about position absolute, but if you want alternative solution, there's this called flexbox. Here's an example.

#parent {
    display:flex;
    align-items:center;
    justify-content:center;
}

What it does is the container is converted to flex and to align child items to center on horizontal is by using justify-content:center and vertical is to use align-items:center. It does support modern browsers too, so it's safe to use.

Though, be sure to read how flexbox work first.

https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Flexbox

Flexbox supported browsers

https://caniuse.com/flexbox


using flexbox fixed that issue for me
K
KatieK

A simple CSS trick, just add:

width: 100%;
text-align: center;

This works on both images and text.


f
flyingpluto7

To center a “position: absolute” element.

.your-element {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center; // or this ->  margin: 0 auto;
}

This is the best solution. Setting left and right to 0.
D
Deplake

This worked for me:

position: absolute;
left: 50%;
transform: translateX(-50%);

R
Rednas

to center a a position:absolute attribute you need to set left:50% and margin-left: -50% of the width of the div.

<!-- for horizontal -->
<style>
div.center{
 width:200px;
 left:50%;
 margin-left:-100px;
 position:absolute;
}
</style>


<body>
 <div class='center'>
  should be centered horizontaly
 </div>
</body>

for vertical center absolute you need to do the same thing bud not with left just with top. ( NOTE: html and body must have min-height 100%; )

<!-- for vertical -->
<style>
 body,html{
  min-height:100%;
 }
 div.center{
  height:200px;
  top:50%;
  margin-top:-100px;
  position:absolute;
 }
</style>

<body>
 <div class='center'>
  should be centered verticaly
 </div>
</body>

and can be combined for both

   <!-- for both -->
 <style>
 body,html{
  min-height:100%;
 }
 div.center{
  width:200px;
  height:50px
  left:50%;
  top:50%;
  margin-left:-100px;
  margin-top:-25px;
  position:absolute;
 }
</style>


<body>
 <div class='center'>
  should be centered
 </div>
</body>

S
Sebastian Thomas

Or you can now use flex box with postion absolute:

.parent {
    position: relative;
    display: flex;
    justify-content: center;
}

.child {
    position: absolute;
}

this is so underrated.
This is only correct if you want to align ALL of the items. If you have more and you want to differentiate, it will not work.
k
kukkuz
    <div class="centered_content"> content </div>
    <style type="text/css">
    .centered_content {
       text-align: center;
       position: absolute;
       left: 0;
       right: 0;
    }
    </style>

see demo on: http://jsfiddle.net/MohammadDayeh/HrZLC/

text-align: center; works with a position: absolute element when adding left: 0; right: 0;


Please provide some sort of commentary or rationale behind why this code works. Code answers themselves will inevitably get flagged for deletion.
P
PEHLAJ

The simpler, the best:

img {
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto auto;
            position: absolute;
}

Then you need to insert your img tag into a tag that sports position:relative property, as follows:

<div style="width:256px; height: 256px; position:relative;">
      <img src="photo.jpg"/>
</div>

V
Vương Hữu Thiện

You can use the "transform" attribute:

position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);

C
Cris

probably the shortest

position:absolute;
left:0;right:0;top:0;bottom:0;
margin:0 auto;

This is quite awesome but just to center vertically and horizontally we need to make margin auto only
C
Community

If you don't know the width of the element you can use this code:

<body>
<div style="position: absolute; left: 50%;">
    <div style="position: relative; left: -50%; border: dotted red 1px;">
        I am some centered shrink-to-fit content! <br />
        tum te tum
    </div>
</div>

Demo at fiddle: http://jsfiddle.net/wrh7a21r/

Source: https://stackoverflow.com/a/1777282/1136132


@NabiK.A.Z. this example is useful if you don't know the width of the element. In your example you set a width to the div.
J
Julix

Using left: calc(50% - Wpx/2); where W is the width of the element works for me.


How do you determine W?
He said "an image" - ideally when doing images for the web you're supposed to make the image in the size that you're going to use it (rather than resize it) to avoid unnecessary weight (if you make a large image small) or fuzziness (if you make a small image big). - You can use "imageElement.naturalHeight" and "imageElement.naturalWidth" if you're using jQuery and then style dynamically too, but that's getting a bit complicated. To be fair, many of the other answers also require you to know the width of the image for their technique to work.
if you are actually unclear on how to get W though, in Chrome you can use CTRL+Shift+i (developer tools), then CTRL+Shift+C (inspect mode) to hover over elements and see how wide things are. You can also just decide how wide you want it to be and add "width: Wpx" to your css.
K
Konstantine Kalbazov

https://i.stack.imgur.com/masgh.gif

I'm not sure what you want to accomplish, but in this case just adding width: 100%; to your ul#slideshow li will do the trick.

Explanation

The img tags are inline-block elements. This means that they flow inline like text, but also have a width and height like block elements. In your css there are two text-align: center; rules applied to the <body> and to the #slideshowWrapper (which is redundant btw) this makes all inline and inline-block child elements to be centered in their closest block elements, in your code these are li tags. All block elements have width: 100% if they are the static flow (position: static;), which is default. The problem is that when you tell li tags to be position: absolute;, you take them out of normal static flow, and this causes them to shrink their size to just fit their inner content, in other words they kind of "lose" their width: 100% property.


g
gre_gor

Your images are not centered because your list items are not centered; only their text is centered. You can achieve the positioning you want by either centering the entire list or centering the images within the list.

A revised version of your code can be found at the bottom. In my revision I center both the list and the images within it.

The truth is you cannot center an element that has a position set to absolute.

But this behavior can be imitated!

Note: These instructions will work with any DOM block element, not just img.

Surround your image with a div or other tag (in your case a li).

my-image
Note: The names given to these elements are not special. Alter your css or scss to give the div absolute positioning and your image centered. .absolute-div { position: absolute; width: 100%; // Range to be centered over. // If this element's parent is the body then 100% = the window's width // Note: You can apply additional top/bottom and left/right attributes // i.e. - top: 200px; left: 200px; // Test for desired positioning. } .absolute-div img { width: 500px; // Note: Setting a width is crucial for margin: auto to work. margin: 0 auto; }

And there you have it! Your img should be centered!

Your code:

Try this out:

body { text-align : center; } #slideshow { list-style : none; width : 800px; // alter to taste margin : 50px auto 0; } #slideshow li { position : absolute; } #slideshow img { border : 1px solid #CCC; padding : 4px; height : 500px; width : auto; // This sets the width relative to your set height. // Setting a width is required for the margin auto attribute below. margin : 0 auto; }

  • Dummy 1
  • Dummy 2

I hope this was helpful. Good luck!


M
Matěj Husák

as many others said this ⬇️

.element {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

should work. But be aware, that the .element must be in a wrapper that has position: relative; (in case you don't want to make it in the center of the whole HTML page)

FYI: I've made a pseudo-library for CSS centering. I needed it for my dev juniors. So, feel free to check it out. http://dev.solcode.net/centercss/


e
eveevans

An absolute object inside a relative object is relative to its parent, the problem here is that you need a static width for the container #slideshowWrapper , and the rest of the solution is like the other users says

body {
    text-align: center;
}

#slideshowWrapper {
    margin-top: 50px;
    text-align:center;
    width: 500px;
}

ul#slideshow {
    list-style: none;
    position: relative;
    margin: auto;
}

ul#slideshow li {
    position: relative;
    left: 50%;
}

ul#slideshow li img {
    border: 1px solid #ccc;
    padding: 4px;
    height: 450px;
}

http://jsfiddle.net/ejRTU/10/


Your fiddle as the two images stacking up one one another.
S
SantoshK

Here is easy and best solution for center element with “position: absolute”

body,html{ min-height:100%; } div.center{ width:200px; left:50%; margin-left:-100px;/*this is 50% value for width of the element*/ position:absolute; background:#ddd; border:1px solid #999; height:100px; text-align:center }

should be centered verticaly


R
RICHARD ABRAHAM

Just use display: flex and justify-content: center on the parent element

body { text-align: center; } #slideshowWrapper { margin-top: 50px; text-align: center; } ul#slideshow { list-style: none; position: relative; margin: auto; display: flex; justify-content: center; } ul#slideshow li { position: absolute; } ul#slideshow li img { border: 1px solid #ccc; padding: 4px; height: 100px; }

  • Dummy 1
  • Dummy 2

You can find this solution in JSFIDDLE


a
azro

You can try this way :

* { margin: 0px; padding: 0px; } #body { height: 100vh; width: 100vw; position: relative; text-align: center; background-image: url('https://s-media-cache-ak0.pinimg.com/originals/96/2d/ff/962dff2247ad680c542622e20f44a645.jpg'); background-size: cover; background-repeat: no-repeat; } .text { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height:100px; display: inline-block; margin: auto; z-index: 999999; }

Random


A
Ammad Amir

1- when you know the width of the absolutely positioned element.

width: 200px;
position: absolute;
left: 50%;
margin-left: -100px

2- when you don’t know the width of the absolutely positioned element. Excellent for responsiveness but is CSS3 older browsers may have an issue.

position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)

3- when you don’t know the width of the absolutely positioned element but makes it 100% wide of it’s parent which might not fit the design.

position: absolute;
left: 0;
right: 0;
margin: auto

If you do know the width, you can use the third option as well and it will center.


h
hustnzj

For this case, I think the code as below is enough:

    ul#slideshow li {
      position: absolute;
      left: 0;
      right: 0;
    }

g
gre_gor
#parent
{
    position : relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25% /* images with aspect ratio: 16:9  */
}

img 
{
    height: auto!important;
    width: auto!important;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    display: block;
    /*  */
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

I don't remember where I saw the centering method listed above, using negative top, right, bottom, left values. For me, this tehnique is the best, in most situations.

When I use the combination from above, the image behaves like a background-image with the following settings:

background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;

More details about the first example can be found here:
Maintain the aspect ratio of a div with CSS


d
double-beep

My favorite method to absolute center any element or group of elements is to absolute position their container, make it the height and width of the relative container, then use flex to align the elements within.

In this specific case:

body {
  position: relative; /* OPTIONAL */
}

#slideshowWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row; /* OPTIONAL IF ONLY ONE ELEMENT */
  justify-content: center;
  align-items: center;
}

Hope that helps, cheers.


R
Ryan Gibbons

Position absolute takes it out of the flow, and places it at 0x0 to the parent ( Last block element to have a position absolute or position relative ).

I'm not sure what exactly you what you are trying to accomplish, It might be best to set the li to a position:relative and that will center them. Given your current CSS

Check out http://jsfiddle.net/rtgibbons/ejRTU/ to play with it


:/ at the end is almost the same solution as yours... < Up vote
D
Deane Nettles

What seems to be happening is there are two solutions; centered using margins and centered using position. Both work fine, but if you want to absolute position an element relative to this centered element, you need to use the absolute position method, because the absolute position of the second element defaults to the first parent that is positioned. Like so:

<!-- CENTERED USING MARGIN -->
<div style="width:300px; height:100px; border: 1px solid #000; margin:20px auto; text- align:center;">
    <p style="line-height:4;">width: 300 px; margin: 0 auto</p>
    <div style="position:absolute; width:100px; height:100px; background-color:#ff0000; top:-20px; left:0px;">
        <p style="line-height:4;">Absolute</p>
    </div>
</div>

<!-- CENTERED USING POSITION -->
<div style="position:absolute; left:50%; width:300px; height:100px; border: 1px solid #000; margin:20px 0 20px -150px; text-align:center;">
    <p style="line-height:2;">width:300px; position: absolute; left: 50%; margin-left:-150px;</p>
    <div style="position:absolute; width:100px; height:100px; background-color:#ff0000; top:0px; left:-105px;">
        <p style="line-height:4;">Absolute</p>
    </div>
</div>

Until I'd read this posting, using the margin:0 auto technique, to build a menu to the left of my content I had to build a same-width column to the right to balance it out. Not pretty. Thanks!


L
Luke

Use margin-left: x%; where x is the half of the width of the element.