Johannes wrote:
On Wed, Feb 11, 2009 at 06:03:13PM +0000, corvid wrote:
I tried font-size: .6in (we still love archaic measurements here) and it didn't work.
The grammar says num [0-9]+|[0-9]*"."[0-9]+
Oh yes. That's Css_next_token() which is not recognizing ".6" as a float...
Attached. I'm too much of a css newbie to promise great testing, but I did cobble together the following and the right things seemed to happen: <html> <head> <style type="text/css"> hr.aaaaa {width: 1.5in} bbbbb {width: 2 in} </style> </head> <body> <hr style="width: 0.3in"> <hr style="width: .6in"> <hr style="width: 1 in"> <hr class="aaaaa"> <hr class="bbbbb"> </body </html>