我想要居中并限制图像
我有一个外if (isempty(centers))
% write a dummy XLS file
else
% write your values to XLS file
end
和一个container
,其image-container
与图片尺寸相同(必填,包含可拖动的项目)
但图像仍然超过display: inline-block;
是否有解决方法来获得所需的结果(如屏幕截图所示)
height: 100%;
.container {
width: 300px;
height: 100px;
background: red;
text-align: center;
}
.image-container {
display: inline-block;
background: #0f0;
outline: 5px solid #00f;
max-width: 100%;
max-height: 100%;
}
.main-image {
max-width: 100%;
max-height: 100%;
}
答案 0 :(得分:1)
我最终在image-container
上使用绝对定位将其折叠到孩子的大小。这需要父容器上的position: relative
。此处添加overflow: hidden
以修复因image-container
上的转换导致的轻微偏移。
.container {
width: 300px;
height: 100px;
background: red;
position: relative;
overflow: hidden;
}
position
,top
,left
和transform
在此处设置为将image-container
垂直和水平居中放置在父容器中。
.image-container {
background: green;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
max-width
和max-height
需要匹配父容器的宽度和高度。
.main-image {
max-width: 300px;
max-height: 100px;
}
答案 1 :(得分:1)
你可以这样做:
.container {
width: 300px;
height: 100px;
background: red;
display: flex;
}
.image-container {
display: flex;
justify-content: center; /* horizontal centering */
background: #0f0;
outline: 5px solid #00f;
}
img { /* responsiveness */
display: block;
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
}
<div class="container">
<div class="image-container">
<img class="main-image" src="http://via.placeholder.com/400x400">
</div>
</div>