html – 你可以使用display:table-cell并且具有固定的宽度/高度?

前端之家收集整理的这篇文章主要介绍了html – 你可以使用display:table-cell并且具有固定的宽度/高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下几点:

CSS:

.photo {
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100px;
  height: 100px;
}

HAML

.photo
  %img{:src => my_url}

看到j​​sFiddle here.我用来演示的图像是150像素乘80像素。

我需要在.photo div中显示图像,并裁剪任何多余的图像。图像需要垂直和水平居中。但是,显示:table-cell会导致.photo div忽略我的宽度和高度设置。我该怎么办?

解决方法

table-cell不是垂直对齐的唯一解决方案。
.photo {
    overflow: hidden;
    background: #c0c0c0;
    display:inline-block; /* or float:left; */
    text-align: center;
    width: 100px;
    height: 100px;
    line-height:97px;
}
.photo img {
    vertical-align:middle;
    max-width:100%;
    max-height:100%;
}
原文链接:https://www.f2er.com/html/233618.html

猜你在找的HTML相关文章