which selector is used as wild card selector?
Answers
Answered by
0
Explanation:
Wildcard Selectors (*, ^ and $) in CSS for classes
Wildcard selector is used to select multiple elements simultaneously. It selects similar type of class name or attribute and use CSS property. * wildcard also known as containing wildcard.
Answered by
0
Answer:
Wildcard Selectors (*, ^ and $) in CSS for classes
* wildcard also known as containing wildcard. [attribute*=”str”] Selector: The [attribute*=”str”] selector is used to select that elements whose attribute value contains the specified sub string str.
Similar questions