我在这里查看了一堆不同的问题,并在其他地方查看了教程,尝试了各种解决方案来停止我在 Chrome for Nexus 5 上的网站上的水平滚动。
该网站 http://kennethfrancis.com
这似乎并没有改变任何东西:
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0 maximum-scale=1" />
我希望 HR 在平板电脑或手机大小时捕捉到全屏宽度,但禁用水平滚动。感谢有关HTML和CSS的其他提示。
编辑:当我将鼠标悬停在Chrome 30中时,看起来GMail徽标正在摆动。对此的任何想法也将不胜感激。
它是您hr.的边距样式。 700px的最小宽度是一个原因媒体查询中的宽度为 200%。让它 100%
@media only screen and (max-width: 768px) and (min-width: 320px)
hr {
margin-left: -20%;
width: 200%;
margin-top: -60px;
}
hr {
margin-top: -80px;
border: 0;
clear: both;
display: block;
min-width: 700px;
background-color:#70B2FF;
height: 1px;
}
更改为
@media only screen and (max-width: 768px) and (min-width: 320px)
hr {
margin-left: -20%;
width: 100%;
margin-top: -60px;
}
hr {
margin-top: -80px;
border: 0;
clear: both;
display: block;
background-color:#70B2FF;
height: 1px;
}