Interview Questions

Do URL's have quotes or not?

CSS Interview Questions and Questions


(Continued from previous question...)

100. Do URL's have quotes or not?

Double or single quotes in URLs are optional. The tree following examples are equally valid:

BODY {background: url(pics/wave.png) blue}
BODY {background: url("pics/wave.png") blue}
BODY {background: url('pics/wave.png') blue}

(Continued on next question...)

Other Interview Questions