InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not the pseudo class for CSS Basic UI Level3?(a) :optional(b) :read-only(c) :valid(d) :checked |
|
Answer» Correct option is (d) :checked The explanation is: CSS Basic UI Level 3 has many pseudo-classes like :widget, :invalid, :valid, :in-range, :required, :read-write, :read-only, :optional, :out-of-range. CSS Selector Level 3 has the classes :disabled, :enabled, :indeterminate, :checked. |
|