Is there any valid way to show dummy scroll bar in firefox?
Is there any 开发者_运维问答valid way to show dummy scroll bar in firefox?
If you just want scrollbars to test the look of having a bar, try setting the overflow property:
body { overflow:scroll; }
This will force Firefox to display a scrollbar for your window. For a vertical bar only, use overflow-y instead:
body { overflow-y:scroll; }
This is the best way to force scroll bars.
精彩评论