InterviewSolution
Saved Bookmarks
| 1. |
CSS |
|
Answer» Types of SELECTORS: Example: h1 [Selects all the elements with h1 tag.]
Example: #first-name [Selects the element having first-name as an ID value.]
Example: .blue [selects all the elements with a class name blue.]
Example: * [Selects all the elements in the document.]
Example: a [target = “_blank”] selects all the anchor elements with attribute value is _blank. |
|