|
Posted by mbstevens on 11/27/54 11:59
On Thu, 28 Sep 2006 03:37:59 -0700, UKuser wrote:
> Hi Folks,
>
> Below is some test text which I've been working on, to try and get my head
> around CSS more..................
> body {
> text-align:center;
> }
> }
> #top{
> width:100%;
> height:50px;
> background-color:cyan;
> }
> }
Your parens are so imbalanced that I'm surprised anything works at all.
Remove extras:
> body {
> text-align:center;
> }
>
> #top{
> width:100%;
> height:50px;
> background-color:cyan;
> }
....and so on through the rest of your CSS markup.
....then recheck your CSS at:
http://jigsaw.w3.org/css-validator/
before even trying to run it.
--
mbstevens
http://www.mbstevens.com/
Navigation:
[Reply to this message]
|