我想知道与我的相比,是否有更有效的方法将图像置于浮动 div 中。现在我已经设置好了,所以图像被放置在 ap 中,并且我将 p 居中。看到额外的 p 标签让我非常恼火:(。无论如何我可以让 img 自己居中吗?谢谢!我在下面列出了我现在拥有的内容。编辑:它需要是垂直和水平的!
HTML
<div class="filler"><p><img src="images/qualGraphic.png" width="578px" height="256.72px" alt="Quality"/></p></div>
CSS
.filler {
display:table;
width:65.6%;
height:300px;
background-color:#000;
display: table;
float:left;
}
.filler p {
display: table-cell;
vertical-align: middle;
text-align: center;
}