• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Horizontal Scroll Bar

 
Ranch Hand
Posts: 128
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am using a Mshtml editor with an htc as an replacement to Textarea to provide rich text features. My problem is i am getting an horizontal scroll bar.
My div code in htc file is

div id=editBox align=left color="white" style="height:98px;width=740px; font-family:Arial; padding:2;border:2 inset #dfdfdf ;background-color:white;text-wrap;word-wrap: break-word;overflow-x :"hidden";"
div
In the place where i call the editor in do this way

TD class="Fld_Vl" colspan="3"

ed:mailEditor id="idBrfDesc" content='Desc' edit='true' onchange="javascript:funChange()" style="height:200; width=750;text-wrap;word-wrap: break-word;"
TD

I dont get a horizontal scroll and it wraps properly, If height exceeds and a vertical scroll bar comes up, horizontal scroll bar comes up automatically. Could any one suggest how to avoid horizontal scroll bar coming up.
Thanks in advance.
Regards,
Arul.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
overflow-x hidden is IE only at the moment, but should be made part of the standard.

Have you tried:

overflow:hidden OR overflow:visible

Eric
 
Poop goes in a willow feeder. Wipe with this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic