0

使用 Bootstrap - 如何将 div 从右、左、上和下居中,并且能够使图片响应?我试过这个:

#logo{
    position:absolute;
    top: 50%;
    left: 50%;
    width:500px;
    height:200px;
    margin-top: -100px; /*set to a negative number 1/2 of your height*/
    margin-left: -250px; /*set to a negative number 1/2 of your width*/
} 

但它禁用了 img 响应。有什么解决方案可以让它们都工作吗?

4

1 回答 1

0

这是解决方案

#logo{
    position:absolute;
    top:50%;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: 500px;
    transform: translate(-50%,-50%);
}
于 2016-09-23T08:55:25.727 回答