1
我在Chrome中出现水平滚动条时出现问题。该页面宽度为960像素,滚动条不应处于活动状态。我无法找到导致此问题的元素。水平滚动只出现在Chrome中
请帮帮忙,网站的地址是http://jciventure.it360.pl/
我在Chrome中出现水平滚动条时出现问题。该页面宽度为960像素,滚动条不应处于活动状态。我无法找到导致此问题的元素。水平滚动只出现在Chrome中
请帮帮忙,网站的地址是http://jciventure.it360.pl/
症结在于h1.assistive-text.section - 航向
变化
/* 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);
}
页面上的主要HTML标记包括与以下一类:
overflow:hidden;
margin-left:auto;
margin-right:auto;
它会在Chrome浏览器现在。
感谢,做工精细! – forkie