Posted by Jonathan N. Little on 12/02/07 14:01
Defacta wrote:
Don't use inline styles
> I have put it in the html tag:
> <html style=\"overflow:scroll\" ...>
^ ^
And I don't know why you are escaping quotes with "\"
>
> And now it works fine with Firefox and with IE6
Just put a style element in your document head:
<head>
<style type="text/css">
html { overflow: scroll; }
</style>
....
or better yet, link to a separate stylesheet file in the head
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
...
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|