为什么navbar品牌隐藏在Chrome手机上?

时间:2015-07-09 12:29:44

标签: html css twitter-bootstrap

我刚刚创建了site,并且一直在调整移动视图。现在,对于我的生活,我无法弄清楚为什么导航品牌在移动镀铬或具有小视图端口的桌面镀铬上查看时消失。它确实出现在我的iPhone上的safari中,所以我确定它在那里。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

嗯,您已在.navbar-brand img声明中定义了width: auto; @media (max-width: 767px),请尝试删除 width: auto;

<强> E.g。

@media (max-width: 767px) {
     .navbar-brand img {
       max-height: 40px;
       /* width: auto; */ /** comment out or remove this line **/
       margin: -10px 10px 0 0;
    }
}

希望它有所帮助。