T-1, is your code, both html and css localised ...i.e. residing on your hdd as you perform your tests or is it on remote server elsewhere and accessing it via internet? Another thing, are you using external style sheets or internal?..... let us know pls. I'm sure someone here will be able to help....
Hi, SteveD!
My html and CSS code is localised. I haven't linked my code to any external sheet so far. I mean even a simple code, like the one below, wouldn't work on my browser!!:
<html>
<head>
<title>Moving Styles To the Top</title>
<style type=text/css>
.wide { word-spacing: 15px; font-weight: bold; }
.narrow { word-spacing: -3px; font-weight: bold; }
.doublespaced { line-height: 1.5; }
</style>
</head><body>
<div class=doublespaced>
This is a paragraph of text thats double-spaced. This means
that the <i>leading</i>, or interline spacing, is different
from standard text layout on a Web page. Within this
paragraph, I can also have
<span class=wide>some words that are widely spaced due to
the word-spacing value</span> and, of course,
<span class=narrow>some words that are narrowly spaced,</span>
too.
</div>
<p>
By comparison, this paragraph doesnt have any special line-height
specified, so its single spaced. Notice the difference in the
space between lines of text.
</p>
</body>
</html>