Saved Bookmarks
| 1. |
What is universal css selector? |
|
Answer» It is used to select any type of elements in an HTML page. An ASTERISK ( * ) is used to denote a universal CSS selector. This is useful when we want to SET a style for of all the elements of an HTML page. Syntax : * { CSS-Property: value; ................. } Also READ: What are the Latest Features in Bootstrap 4 |
|