在其父 div 中居中图像需要特定的 CSS 技术。以下是实现此目的的方法:
问题:
如何在其父 div 中间对齐图像,同时保留其高度 (100%),而不拉伸其宽度?
示例:
考虑问题中提供的 HTML 和 CSS:
<code class="html"><div class="box"> <img src='featured.jpg' /> </div></code>
<code class="css">.box { height: 100%; width: 450px; border: 2px solid red; background: green; overflow: hidden; } .box img { height: 100%; width: auto; text-align: center; }</code>
解决方案:
要使图像居中,请添加 text-align: center;对父 div 而不是子图像元素的 CSS 声明:
<code class="css">.box { /* ... */ text-align: center; /* Align center all inline elements */ }</code>
这会将 div 内的所有内联元素(包括图像)居中。
其他增强功能:
由于行内元素预留的行高,图像下方可能会有间隙。要消除此间隙,请添加vertical-align:bottom;到图像CSS:
<code class="css">.box img { /* ... */ vertical-align: bottom; /* Fix the vertical gap */ }</code>
以上是如何在保持高度和纵横比的同时使图像在父 Div 中居中?的详细内容。更多信息请关注PHP中文网其他相关文章!