如何隐藏IE 10 html和正文之间的间隙(x-滚动条空间?)

如何隐藏IE 10 html和正文之间的间隙(x-滚动条空间?),html,css,internet-explorer,internet-explorer-10,Html,Css,Internet Explorer,Internet Explorer 10,我发现IE 10在html和body标签之间有一个间隙, 我尝试使用CSS padding:0、margin:0和overscroll-x:hidden,但仍然不起作用,有人找到了解决方案吗?谢谢 示例链接如下所示: html,正文{ 溢出x:隐藏; 填充:0; 保证金:0; } 文件 1234 将此CSS重置添加到所有项目: 重置样式表的目标是减少浏览器在默认行高、页眉边距和字体大小等方面的不一致 /* http://meyerweb.com/eric/tools/css/reset/

我发现IE 10在html和body标签之间有一个间隙, 我尝试使用CSS padding:0、margin:0和overscroll-x:hidden,但仍然不起作用,有人找到了解决方案吗?谢谢

示例链接如下所示:

html,正文{ 溢出x:隐藏; 填充:0; 保证金:0; } 文件 1234
将此CSS重置添加到所有项目:

重置样式表的目标是减少浏览器在默认行高、页眉边距和字体大小等方面的不一致

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}