Re: Validation error messages

* Lisa wrote:
>I'm having a little trouble understanding the meaning
>of one of my validation errors: 
>
>Invalid number : background-positiononly 0 can be a length.
>You must put an unit after your number : 150 190
>
>Can someone point me to an explanation of the error messages, please?

You have

  background-position: 150 190;

You must specify a unit for these numbers, e.g.

  background-position: 150px 190px;

or

  background-position: 150em 190em;

I guess you want the "px" version.

Received on Tuesday, 20 July 2004 13:56:33 UTC