I'm using the following in my CSS to force a vertical scrollbar in Firefox:
body {
overflow-y: scroll;
}
Does this technique work in Safari and Opera? Some people say it does and some say otherwise.
I'm using the following in my CSS to force a vertical scrollbar in Firefox:
body {
overflow-y: scroll;
}
Does this technique work in Safari and Opera? Some people say it does and some say otherwise.
The CSS rule overflow-y: scroll
works for me in:
and obviously all versions of Microsoft Internet Explorer where the scrollbar is always shown.
Safari and Google Chrome are using the same view engine, so chances are it works in Safari as well :)