作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 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-responsive。有什么解决方案可以使它们都起作用吗?
最佳答案
解决方法
#logo{
position:absolute;
top:50%;
left: 50%;
width: 100%;
height: auto;
max-width: 500px;
transform: translate(-50%,-50%);
}
关于css - Bootstrap - 如何将 div 从右上左下居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33224916/
我是一名优秀的程序员,十分优秀!