使用 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 响应。有什么解决方案可以让它们都工作吗?