Doctype defined => horizontal scrollbar??

  • Thread starter Thread starter Sven
  • Start date Start date
S

Sven

Whenever i define a doctype in my website I get a
horizontal scrollbar in IE6, when I use frames...

What can I do to prevent it? (And I can't put
scrolling="no", because people must be able to scroll
vertically...)

Thanks in advance,
Sven Herremans
 
1. set scrolling="no"
2. inside the frame or iframe wrap everything up in
something like

<div style="overflow-x: scroll; overflow-y: hidden;
width: 30px; height: 100px;"><nobr>
you will need to scroll. to move through this
</nobr>
 
You can also do it by using a stylesheet with the
statement:
body {width: 95% }
I've been investigating this bug. Does anyone know if
Microsoft have admitted to it?
 
Back
Top