Looking for some help on how to create two links that, when clicked, will scroll a hidden <div>
up to fill the full height of its parent container. I've been having trouble with the element using the full height of the <BODY>
instead.
html, body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #333;
background: rgba(0, 109, 189, 1);
height: 100vh;
width: 100vw;
font-family: Calibri, Calibri, Arial, Helvetica, sans-serif;
font-size: 10pt;
font-weight: bold;
}
p {
padding: 10px;
}
...
<!DOCTYPE html>
<html>
...
</html>
If you have any suggestions on how to accomplish this effect, please share! Thank you!