I'm currently working on a webpage with a fixed width and height.
Although I'm incorporating hover effects, I'm encountering an issue where the vertical overflow of the page is not set to 100% (100vh).
What could be causing this problem and how can I go about resolving it?
img {
max-width: 100%;
}
.top {
width: 100%;
height: 50px;
background: #fff;
position: absolute;
top: 0;
}
/* More CSS codes for different effects and transitions */
<div class="top"></div>
<div class="first effect-zoe">
<figcaption>
<h2>VISIT THE SITE</h2>
<p class="icon-links">
<a href="#"><span class="icon-heart"></span></a>
<a href="#"><span class="icon-eye"></span></a>
<a href="#"><span class="icon-paper-clip"></span></a>
</p>
<p class="description"><strong>RIVIERA - HOME</strong><br/>A place to start from, a place to come back to.</p>
</figcaption>
</div>
<div class="second"></div>
<div class="third"></div>