What i\'m trying to do is kind of like a back to top button but to scroll down and up to a certain point on the page! Say for instance you have a long text and
HTML
CSS
#btn {
position: fixed;
bottom: 10px;
float: right;
right: 20.5%;
left: 77.25%;
max-width: 90px;
width: 100%;
font-size: 12px;
border-color: rgba(5, 82, 248);
background-color: rgb(5, 82, 248);
padding: .5px;
border-radius: 4px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
On Hover Color Change
#btn:hover {
background-color: #fafafa;
}