0

好的,我尝试使用 vertical-align 和 text-align 属性将这个响应式图像居中,但没有成功。有人可以告诉我我做错了什么。我希望图像垂直和水平地位于页面中间。

<div class="circle">
     <div class="bl-circle" style="z-index:9999;">
          <a href="http://www.leedsrush.com"><img src="images/Circular.png" onmouseover="this.src='images/leeds.png'" onmouseout="this.src='images/Circular.png'" style="width:100%; height:100%;"/>
          </a>
      </div>
</div>

.bl-circle{
    position: absolute;
    max-width:250px;
    max-height:250px;
    height:100%;
    width:100%;
    margin-left:auto;
    margin-right:auto;
}

.circle{


}
4

1 回答 1

0

我会看看这个教程:

http://pmob.co.uk/pob/hoz-vert-center.htm

当我试图在我的页面中居中一个元素时,这就是我使用的。每次都像魅力一样工作,尤其是底部的示例,当您不知道元素的宽度和高度时。

于 2013-08-16T15:33:42.953 回答