Center Oversized Image in Div

前端 未结 12 1586
予麋鹿
予麋鹿 2020-11-27 08:52

I have been trying to sort out how to center an oversized image within a div using css only.

We are using a fluid layout, so the width of the image containers varies

相关标签:
12条回答
  • 2020-11-27 09:32

    This is an old Q, but a modern solution without flexbox or position absolute works like this.

    margin-left: 50%;
    transform: translateX(-50%);
    

    .outer {
      border: 1px solid green;
      margin: 20px auto;
      width: 20%;
      padding: 10px 0;
      /*   overflow: hidden; */
    }
    
    .inner {
      width: 150%;
      background-color: gold;
      /* Set left edge of inner element to 50% of the parent element */
      margin-left: 50%; 
      /* Move to the left by 50% of own width */
      transform: translateX(-50%); 
    }
    <div class="outer">
      <div class="inner">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quos exercitationem error nemo amet cum quia eaque alias nihil, similique laboriosam enim expedita fugit neque earum et esse ad, dolores sapiente sit cumque vero odit! Ullam corrupti iure eum similique magnam voluptatum ipsam. Maxime ad cumque ut atque suscipit enim quidem. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi impedit esse modi, porro quibusdam voluptate dolores molestias, sit dolorum veritatis laudantium rem, labore et nobis ratione. Ipsum, aliquid totam repellendus non fugiat id magni voluptate, doloribus tenetur illo mollitia. Voluptatum.</div>
    </div>

    So why does it work?
    At first glance it seems that we shift 50% to the right and then 50% to the left again. That would result in zero shift, so what?
    But the 50% are not the same, because context is important. If you use relative units, a margin will be calculated as percentage of the width of the parent element, while the transform will be 50% relative to the same element.

    We have this situation before we add the CSS

           +-------------------------------------------+
           | Parent element P of E                     |
           |                                           |
           +-----------------------------------------------------------+
           | Element E                                                 |
           +-----------------------------------------------------------+
           |                                           |
           +-------------------------------------------+
    

    With the added style margin-left: 50% we have

           +-------------------------------------------+
           | Parent element P of E                     |
           |                                           |
           |                     +-----------------------------------------------------------+
           |                     | Element E                                                 |
           |                     +-----------------------------------------------------------+
           |                     |                     |
           +---------------------|---------------------+
           |========= a ========>|
    
           a is 50% width of P
    

    And the transform: translateX(-50%) shifts back to the left

           +-------------------------------------------+
           | Parent element P of E                     |
           |                                           |
    +-----------------------------------------------------------+
    | Element E                 |                               |
    +-----------------------------------------------------------+
    |<============ b ===========|                      |
           |                    |                      |
           +--------------------|----------------------+
           |========= a =======>|
    
           a is 50% width of P
           b is 50% width of E
    

    Unfortunately this does only work for horizontal centering as the margin percentage calculation is always relative to the width. I.e. not only margin-left and margin-right, but also margin-top and margin-bottom are calculated with respect to width.

    Browser compatibility should be no problem: https://caniuse.com/#feat=transforms2d

    0 讨论(0)
  • The width and height are only for example:

    parentDiv{
        width: 100px;
        height: 100px;
        position:relative; 
    }
    innerDiv{
        width: 200px;
        height: 200px;
        position:absolute; 
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    

    It has to work for you if the left and top of your parent div are not the very top and left of the window of your screen. It works for me.

    0 讨论(0)
  • 2020-11-27 09:44

    Try something like this. This should center any huge element in the middle vertically and horizontally with respect to its parent no matter both of their sizes.

    .parent {
        position: relative;
        overflow: hidden;
        //optionally set height and width, it will depend on the rest of the styling used
    }
    
    .child {
        position: absolute;
        top: -9999px;
        bottom: -9999px;
        left: -9999px;
        right: -9999px;
        margin: auto;
    
    }
    
    0 讨论(0)
  • 2020-11-27 09:47

    It's simple with some flex and overflow set to hidden.

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <style>
            div {
                height: 150px;
                width: 150px;
                border: 2px solid red;
            
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        </style>
    </head>
    <body>
        <div>
            <img src="sun.jpg" alt="">
        </div>
    </body>
    </html>
    
    0 讨论(0)
  • 2020-11-27 09:48

    Building on @yunzen's great answer:

    I'm guessing many people searching for this topic are trying use a large image as a "hero" background image, for example on a homepage. In this case, they would often want text to appear over the image and to have it scale down well on mobile devices.

    Here is the perfect CSS for such a background image (use it on the <img> tag):

    /* Set left edge of inner element to 50% of the parent element */
    margin-left: 50%;
    
    /* Move to the left by 50% of own width */
    transform: translateX(-50%);
    
    /* Scale image...(101% - instead of 100% - avoids possible 1px white border on left of image due to rounding error */
    width: 101%;
    
    /* ...but don't scale it too small on mobile devices - adjust this as needed */
    min-width: 1086px;
    
    /* allow content below image to appear on top of image */
    position: absolute;
    z-index: -1;
    
    /* OPTIONAL - try with/without based on your needs */
    top: 0;
    
    /* OPTIONAL - use if your outer element containing the img has "text-align: center" */
    left: 0;
    
    0 讨论(0)
  • 2020-11-27 09:49

    Put a large div inside the div, center that, and the center the image inside that div.

    This centers it horizontally:

    HTML:

    <div class="imageContainer">
      <div class="imageCenterer">
        <img src="http://placekitten.com/200/200" />
      </div>
    </div>
    

    CSS:

    .imageContainer {
      width: 100px;
      height: 100px;
      overflow: hidden;
      position: relative;
    }
    .imageCenterer {
      width: 1000px;
      position: absolute;
      left: 50%;
      top: 0;
      margin-left: -500px;
    }
    .imageCenterer img {
      display: block;
      margin: 0 auto;
    }
    

    Demo: http://jsfiddle.net/Guffa/L9BnL/

    To center it vertically also, you can use the same for the inner div, but you would need the height of the image to place it absolutely inside it.

    0 讨论(0)
提交回复
热议问题