Michael_R_Banks wrote:
> I'm having an issue that I'm sure is so simple to solve I just keep
> overlooking it. I have some DIV's I've positioned absolutely, but if
> I resize the browser until the scroll bars appear, it won't let me
> scroll to the very left or right of my page (i.e. there's no margin
> around my content). Any is appreciated!
Perhaps you should fix the errors first?
> Style Sheet:
....
> text-aligh: left;
typo: text-align
> font: bold italic 60px Verdana;
Read this:
http://k75s.home.att.net/fontsize.html
> div#body
Why not just: body
You cant wrap a div around body, as far as I know.
> * html div#body{height: 295px}
A body of only 295px high?
> font: small-caps 16px Trebuchet MS, sans-serif;
Font names with spaces in them require quotes.
font: small-caps 16px "Trebuchet MS", sans-serif;
> Page:
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://
> www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
Reading your HTML, I see no reason to use a *frameset* doctype.
I would suggest you switch to HTML 4.01 Strict.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
> <body>
See? No <div> around <body>
> <div id="header">
> <table>
It appears you are abusing tables for layout.
Those are only a few of the errors and omissions easily noticeable in
your code. Post the URL to your page instead.
You are also engaging in an attempt at pixel precision. That never
works.
--
-bts
-Friends don't let friends drive Vista