|
I recently discovered the solution to this problem. I was getting the "Error in parsing value for property 'xxx'. Declaration dropped.url... (line 0)"
I discovered the <!DOCTYPE> declaration was the culprit. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> works fine.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> did not work with Firefox
Last edited by kenreynolds; 03-22-2007 at 05:18 PM..
|