我在Chrome中出现水平滚动条有问题。页面宽度为960px,滚动条不应处于活动状态。我找不到导致此问题的元素。
请提供帮助,网站地址为http://jciventure.it360.pl/
答案 0 :(得分:1)
错误在于 h1.assistive-text.section-heading
更改
/* Text meant only for screen readers */
.screen-reader-text,
.assistive-text {
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
}
到
/* Text meant only for screen readers */
.screen-reader-text,
.assistive-text {
width:auto;
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
}
答案 1 :(得分:0)
页面上的主要HTML标记包含一个包含以下内容的类:
overflow:hidden;
margin-left:auto;
margin-right:auto;
它现在可以在Chrome中使用。