border-style:solid;border-width: 1;border-color:#000000;
This isn't valid CSS.
border-style:solid;border-width:
1px;border-color:#000000;
For lengths other than zero a unit of measurement must also be specified. IE incorrectly applies a border if no unit is present, but standards browsers like Firefox and Opera and not so forgiving, and will ignore the declaration all together (which is what the specifications say to do).
This can also be represented with a shorthand, which makes writing the style much easier.
border: 1px solid black;
There are also a variety of other ways of going about it that will provide the same result. :-)
Regards,
Rich
--
[
http://www.smilingsouls.net]
Mail_IMAP: A PHP/C-Client/PEAR solution for webmail
Author: Beginning CSS: Cascading Style Sheets For Web Design