Re: Webdesign: CSS and FF issue
Boris Zbarsky <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.svg |
|---|---|
| Message-ID | <[email protected]> |
Koolmood wrote:
> Hi! I'm new to webdesign and currently making a website.
Honestly, you're asking your questions in the wrong place.
> In IE i managed to make the
> site look fine only by deleting the first lines of the HTLM code that
> refer to Doctype.
In other words, you told IE to ignore your CSS and do buggy things with
it, and then your site looked right? That should be a hint as to where
the problem lies.
> p{
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 16px;
> font-style: normal;
> line-height: 1.5;
> color: #000033;
> text-indent: 40px;
> height: 10px;
> text-align: justify;
> }
Your first issue is in this CSS rule. I suggest actually reading the
CSS you wrote carefully.
But honestly, your other rules (except the last one) have the same problem.
-Boris