Hey there, I could use some assistance with an issue I'm facing. The scroll bars are not showing up on either side of the page. My body has a height and width set to 100%, while the inner elements have specific dimensions that should trigger the scroll bars when the window is zoomed in. Can someone please explain why this is happening and offer a solution?
Here's my CSS:
body {
margin:0 0 0 0;
height:100%;
width:100%;
}
.hdr{
width: 1500px;
height:1500px;
}
And here's the HTML:
<body>
<div class="hdr"></div>
</body>