Meth0d
Mon 23 April 2007, 07:45 am GMT +0200
this is a first on CSS, im getting 2 errors on this validation for a mini-site that I am working on for some friends
http://jigsaw.w3.org/css-validator/validator?uri=http://images.justinlove.net/index.phpwhat does this mean? and which lines exactly is it referring to
Nikolas
Mon 23 April 2007, 09:40 am GMT +0200
It means that you must have a unit after a number. For example, this is an error :
width : 100;
while this is correct :
width : 100px;
Meth0d
Mon 23 April 2007, 05:40 pm GMT +0200
i understand that, but there is no values in my CSS file which dont have a unit .
Nikolas
Mon 23 April 2007, 06:02 pm GMT +0200
What about your html file?
YMC
Mon 23 April 2007, 06:19 pm GMT +0200
It is in the HTML...
<br />- bbCode included<form action="/index.php?user=login" method="post">
<b>Username</b>: <input type="text" name="user" style="width:150" /><br />
<b>Password</b>: <input type="password" name="pass" style="width:150" /><br />
<input type="submit" name="login" value="Log In" />
</form>
Meth0d
Mon 23 April 2007, 08:17 pm GMT +0200
ah ty, cant believe i didnt check this already before :)