Set height 100% on absolute div
问题 I am facing a problem with overlaying a 100% height div . I could use position fixed to solve the cover, but that's not really what I want because you should be able to scroll down on the 'cover' > so people with lower resolutions than mine can see the entire content. Code example: HTML <body> <div>Overlay example text</div> </body> CSS body { float: left; height: 3000px; width: 100%; } body div { position: absolute; height: 100%; width: 100%; background-color: yellow; } The problem: The div