css - IE + 溢出 : hidden

标签 css internet-explorer overflow internet-explorer-10 internet-explorer-11

我不知道这是一个问题还是错误,但是当我使用 overflow: hidden,选择文本并将光标移动到 IE 中的页面底部时,页面正在滚动(我试过 IE9-IE11)!当我使用 Firefox/Opera/Chrome/Safari 时,页面没有滚动...我必须使用 overflow: hidden,但它在 IE 中有一个奇怪的行为。

那么,我的问题是:如何避免在 IE 中滚动页面?

最佳答案

使用 -ms-scroll-limit: 0 0 0 0; 来防止 IE 10+ 中的任何滚动。 对于旧版浏览器,您可以使用 JavaScript 编写解决方法。

CSS 和 JavaScript 示例:

body {
  overflow: hidden;
  -ms-scroll-limit: 0 0 0 0;
}
window.onscroll = function (event) {
  window.scrollTo(0, 0);
}

window.onscroll = function (event) {
  window.scrollTo(0, 0);
}
body {
  overflow: hidden;
  -ms-scroll-limit: 0 0 0 0;
}
    We choose to go to the moon in this decade and do the other things, not because they are easy, but because they are hard, because that goal will serve to organize and measure the best of our energies and skills, because that challenge is one that we are willing to accept, one we are unwilling to postpone, and one which we intend to win.

    We choose to go to the moon in this decade and do the other things, not because they are easy, but because they are hard, because that goal will serve to organize and measure the best of our energies and skills, because that challenge is one that we are willing to accept, one we are unwilling to postpone, and one which we intend to win.

    Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

    What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

    If you could see the earth illuminated when you were in a place as dark as night, it would look to you more splendid than the moon.

    When I orbited the Earth in a spaceship, I saw for the first time how beautiful our planet is. Mankind, let us preserve and increase this beauty, and not destroy it!

    Buy why, some say, the moon? Why choose this as our goal? And they may as well ask why climb the highest mountain?

    Across the sea of space, the stars are other suns.

    Many say exploration is part of our destiny, but it’s actually our duty to future generations and their quest to ensure the survival of the human species.

    As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

    If you could see the earth illuminated when you were in a place as dark as night, it would look to you more splendid than the moon.

    We have an infinite amount to learn both from nature and from each other

    To go places and do things that have never been done before – that’s what living is all about.

    Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

    Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.

    To be the first to enter the cosmos, to engage, single-handed, in an unprecedented duel with nature—could one dream of anything more?

    We have an infinite amount to learn both from nature and from each other

    Many say exploration is part of our destiny, but it’s actually our duty to future generations and their quest to ensure the survival of the human species.

    NASA is not about the ‘Adventure of Human Space Exploration’…We won’t be doing it just to get out there in space – we’ll be doing it because the things we learn out there will be making life better for a lot of people who won’t be able to go.

    Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

    Where ignorance lurks, so too do the frontiers of discovery and imagination.

    Astronomy compels the soul to look upward, and leads us from this world to another.

    We have an infinite amount to learn both from nature and from each other

    Curious that we spend more time congratulating people who have succeeded than encouraging people who have not.

    Where ignorance lurks, so too do the frontiers of discovery and imagination.

    Curious that we spend more time congratulating people who have succeeded than encouraging people who have not.

    Where ignorance lurks, so too do the frontiers of discovery and imagination.

    A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

    What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

    That's one small step for [a] man, one giant leap for mankind.

(overflow: hidden 显然跨浏览器不一致,但我不知道哪个浏览器做对了。)

关于css - IE + 溢出 : hidden,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21975342/

相关文章:

javascript - 如何使用数据用户在表单中输入来创建弹出窗口?

internet-explorer - Internet Explorer 的 URL 转义中文/日文 Unicode 字符

html - CSS/XHTML 菜单 - 在所有浏览器中工作 - IE6 帮助

javascript - 是否可以在溢出的情况下缩小字体大小?

html - 给定容器中的元素网格,如何处理导致元素溢出的边距?

javascript - 在 div 的 span 中设置光标位置不起作用

javascript - 允许下拉元素溢出已隐藏或滚动溢出的容器

gcc - 在 Ubuntu 11.04 中禁用堆栈崩溃保护

css - ionic 复选框 :checked not working angular 2 ionic 2

JavaScript 问题和 IE(style.display 属性)