I have a line like the following in my .css:
background-image: url(#{resource['gfx/logos.png']}),url(#{resource['gfx/background.png']});
And the above code works perfectly, but NetBeans 4.0 marks lines with #{} code in them as errors. When I am using JSF that allows dynamic css, is there a way I can configure NetBeans to not consider these lines errors? When I do introduce an error it makes it easy for me to be unaware of the error because of these false errors.
url("#{resource['gfx/logos.png']}")?