Posted by Harlan Messinger on 11/01/07 19:33
Reshma wrote:
> Hello:
>
> I am new to HTML and CSS. I came across this block of code, .link{
> color:#269;
> display:block;
> margin:4px 0 0 0;
> padding:2px 1em;
> }
>
> I am wondering what is the equivalent hex code for the color:#269 in
> the above.
A three-digit RGB code #xyz is shorthand for a six-digit hex code
#xxyyzz. So, #226699.
[Back to original message]
|