Forum Moderators: not2easy

Message Too Old, No Replies

hide scrollbars on safari on mac?

         

carsten888

4:27 pm on Jan 18, 2008 (gmt 0)

10+ Year Member



body {overflow: hidden;}
does not work.
is there a workaround? javascript?

Setek

12:48 am on Jan 21, 2008 (gmt 0)

10+ Year Member



I believe both Safari and Internet Explorer have the body's scrollbar on the same element:

html { overflow: hidden; }

Whereas Opera and Firefox have it on the

body
.

I just use this:

html,
body { overflow: hidden; }

:)

carsten888

10:30 am on Jan 22, 2008 (gmt 0)

10+ Year Member



that was it. Thanks.