我的徽标响应速度有问题。移动/平板电脑下拉菜单从1000px开始,但由于某种原因,徽标不会像横向星系S3那样保持居中。我制作了两种尺寸的屏幕:http://s7.postimg.org/5hqfg0rq3/logo_not_centered.jpg
我给了logo元素margin:0 auto。
有没有人知道为什么它不会居中?在此先感谢您的帮助,我们非常感谢
网站地址为[1
答案 0 :(得分:0)
您必须将图像放在与三角形相同的div上。
答案 1 :(得分:0)
更容易让html中心元素水平而不使用绝对位置和左边:50%。 解决这个问题:
.logo_wrapper{
remove the left:50%;
width:100%;
text-align:center;
}
.q_logo{
remove left:0;
text-align:center;
width:100%;
}
.q_logo a{
remove left:50%
}