Saved Bookmarks
| 1. |
What is the grouping selector in CSS? |
|
Answer» The grouping SELECTOR in CSS SELECTS all the HTML elements with the same style DEFINITIONS. This will be better to group the selectors, to minimize the code. The comma is a grouping method, it selects all the MATCHING nodes. Example: div, span will match both <span> and <div> elements. |
|