Let's say I want to include a background image, my code might look like this:
background: url(/images/button_bg.png) repeat-x scroll left bottom #146BAE
However, when I check the code in Firebug, it shows:
background: url("/images/button_bg.png") repeat-x scroll left bottom #146BAE
Do the quotation marks around the image path serve any specific purpose? Do they impact speed or compliance with standards, or is Firebug simply adding them for readability?
I've also noticed single quotes ( ' ' ) being used, but I'm unsure if they have any significance.