In CSS when to use single quotation mark and when to use double quotation mark?
example, what is the difference in the following, I tried both but don't see any noticeable difference in the result.background: url("images/module.gif") no-repeat;
vsbackground: url('images/module.gif') no-repeat;
If no difference which is better to use, single or double?