InterviewSolution
Saved Bookmarks
| 1. |
Which of the following does not support the “:hover” pseudoclass?(a) IE 6(b) Chrome(c) Opera(d) Safari |
|
Answer» The correct option is (a) IE 6 Explanation: IE 6 does not support the “:hover” pseudoclass on elements other than anchor tags. To get hover work in IE6, we create a class that duplicates the :hover styles, and then script a function to toggle that class on/off. |
|