horizontal scrollbar

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Pal Csepregi

    horizontal scrollbar

    Hi

    can i remove somehow the horizontal scrollbar? just the horizontal!

    Thx

    PallR


  • Lasse Reichstein Nielsen

    #2
    Re: horizontal scrollbar

    "Pal Csepregi" <palr@chello.hu > writes:
    [color=blue]
    > can i remove somehow the horizontal scrollbar? just the horizontal![/color]

    Using Javascript: No.
    Using something else: Not generally.

    If your page is no wider than the viewport, there should be no
    scrollbar.

    With an IE-specific addition to CSS, you can use:
    html { overflow-x: hidden; }
    That removes the horizontal scrollbar, just as the standard CSS
    html { overflow: hidden; }
    removes all scrollbars.

    /L
    --
    Lasse Reichstein Nielsen - lrn@hotpop.com
    DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
    'Faith without judgement merely degrades the spirit divine.'

    Comment

    Working...