InterviewSolution
Saved Bookmarks
| 1. |
Which of the following strings are defined by in css?(a) single quotes(b) double quotes(c) both single quotes and double quotes(d) none of the mentioned |
|
Answer» Correct answer is (c) both single quotes and double quotes The explanation: In CSS, strings are defined with either single quotes (‘example’) or double quotes (“example”). Quotes may be found within the opposite quote (“I say this is an ‘example’!”). |
|