InterviewSolution
Saved Bookmarks
| 1. |
Which of the following will insert generated content in the counter?(a) content(b) counter-reset(c) counter-increment(d) counter() |
|
Answer» The correct choice is (a) content Explanation: content inserts generated content, counter-reset creates or resets a counter, counter-increment increments the value of the counter, counter() function adds the value of a counter to an element. |
|