7

如何imgdiv设置为overflow: hidden. 也就是说,我想要的是剪辑图像,但同时剪辑左/右,以便显示图像的中间。

<div class='wrapper'>
  <img/>
</div>

然后样式类似:

.wrapper {
  position: absolute;
  /* position details here */
  overflow: hidden;
}
.wrapper img {
  height: 100%;
  margin-left: -??; //what here?
}

-50%将是父级的宽度,但我想要 img 本身的宽度。

Firefox 支持的 CSS 是可以接受的。

4

3 回答 3

13

http://codepen.io/gcyrillus/pen/BdtEj

使用 text-align 、 line-height 、 vertical-align 和负边距。img 几乎减少到零,将自行居中。

.wrapper {
  width:300px;
  text-align:center;
  line-height:300px;
  height:300px;
  border:solid;
  margin:2em auto;
  overflow:visible; /* let's see what we slice off */
}
img {margin:-100%;vertical-align:middle;

  /* to show whats been cut off */
  position:relative;
  z-index:-1;
}

仅用于水平:

  .wrapper {
      width:300px;
      text-align:center;
      border:solid;
      margin:2em auto;
      overflow:hidden
    }
    img {
      margin:0 -100%;
      vertical-align:middle;
    }
于 2013-06-27T08:01:48.830 回答
1

尝试添加

display:block;
margin:0px auto;

到“.wrapper img”

于 2013-06-27T08:01:18.670 回答
1

嗨,请检查示例

它解决了你的问题

HTML

<div class='wrapper'>
    <img  border="3"/>
</div>

CSS

.wrapper {
   /*position: absolute;*/
   /* position details here */
   overflow: hidden;
   text-align:center
}
.wrapper img {
  height: 100%;
}
于 2013-06-27T08:01:42.970 回答