Is there a css parameter I can give to the body element that tells it to scroll to a certain point by default? For example, something like:

body {
    default-scroll-y: 200px;
}

If not, is there another way I can describe scrolling distances as heights in css?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

There is no way in CSS. You could trigger it with JavaScript/jQuery.
You could either use a plugin for that:

Or implement it on your own, which would not be to hard I guess.

link|improve this answer
thanks! the link is a bit above my head, but now I know that CSS isn't enough to do everything. – GabrielG Feb 16 at 14:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.