Hello There!
I am building a dynamic CSS document through PHP and was wondering if it is a big problem (for browsers or SEO or something) for me to leave blank values for some CSS attributes. If it is problematic, is it so much so that it is worth adding a lot more server-side code to make sure I don't leave any attributes blank.
Here is an example of what I am thinking of doing:
body{
background: #00FF00 url();
color: ;
}
So in that example is it a problem that there is no value for color and no value for the background URL?
Thanks in advance!
Key