How can I create a "Back to Top" link that automatically scrolls mobile and tablets to the top of the page? Usually, I would achieve this using JavaScript by detecting the window and body height.
Is it possible to accomplish this using a media query?
@media only screen and (min-height: 500px) and (max-width: 768px)
{
.scrollTop { display: block }
}