CSS in FireFox
CSS in FireFox
Out of context: Reply #6
- Started
- Last post
- 10 Responses
- instantok0
ok...your markup has all sorts of problems...the biggest of which is UNCLOSED TAGS!:
every li element needs to be closed with /li
all anchors need to be closed with /a
--
you also are mixing up your methods of coding:
html should be either in all caps or all lowercase...right now it's inconsistent...
attributes should ALL have quotation marks around them as well
--
your css file has some inconsistencies as well:
all margin and padding setting set to 0 should have px after them
margin / padding should be set in the following order Top Right Bottom Left (think "trouble" to remember that)
----
start with fixing that stuff and then you can start worrying about making it cross browser/platform consistent
hope that helps