Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

No horizontal scroll bar 1

Status
Not open for further replies.

fischadler

Programmer
May 31, 2002
258
MT
I am using the "scroll=no" parameter in the "body" tag to remove the scrollbars. Is it possible to remove just the horizontal scrollbar?

Thanks
 
Hi fischadler,

Yes it is! Use this style (in the <HEAD> or external CSS):

[tt]
<STYLE>
BODY {
overflow-x:hidden;
}
</STYLE>
[/tt]

And...

[tt]
<BODY SCROLL=&quot;AUTO&quot;>
[/tt]

Beware! Only part of contents will be visible in the window if it's too wide to fit the window frame... !!
Hope it works for you §;O)

Regards


Jakob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top