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 mentionedI got this question in exam.My enquiry is from Strings and Keywords in section CSS Properties, Elements, Functions & Tables of CSS |
|
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’!”). |
|