
Signature
Totus possum, totum Deum.
Totus ero, totum meum.
WSW
> border-color: WHITE;
> border: 10px;
> I read that if I do the above there will be a boarder on all four sides of
> the IMAGE and that the boarder will be white. This does not work. What am
> I doing incorrectly?
Not setting the border-style to something other than "none", and (not so
much "incorrect" as inconsistent) using the border shorthand property to
set some properties and the expanded versions for other properties.

Signature
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Jukka K. Korpela - 25 Aug 2006 06:58 GMT
David Dorward <dorward@yahoo.com> scripsit:
>> border-color: WHITE;
>> border: 10px;
[quoted text clipped - 7 lines]
> property to set some properties and the expanded versions for other
> properties.
To be a bit more explicit, use the following instead:
border: solid white 10px;

Signature
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/
News - 28 Aug 2006 20:01 GMT
>> border-color: WHITE;
>> border: 10px;
[quoted text clipped - 7 lines]
> property to set some properties and the expanded versions for other
> properties.
OK thanks I will fix this

Signature
Totus possum, totum Deum.
Totus ero, totum meum.
WSW