PDA

View Full Version : What Is Grouping In CSS3?



sulbha
08-02-2017, 10:12 PM
What Is Grouping In CSS3?

crackersguru
08-03-2017, 12:31 AM
Grouping makes it possible to apply the same style to multiple HTML elements (Classes/Tag/ID) within a single declaration. It happens by specifying all the selectors separated by commas.

mammaaskitchen
08-08-2017, 05:25 AM
Grouping in CSS is a technique used to reduce code redundancy and write clean, concise easy to follow code. There are going to be many instances in which multiple CSS selectors will have the same declarations. In these cases, you can group all the selectors together and write the declarations only one time.

RH-Calvin
08-09-2017, 09:08 PM
CSS grouping can be used to condense code that has multiple selectors with the same declarations. This makes code easy to read and maintain. Also development time is significantly reduced as there is less code to write. Page load times are reduced as well when using grouping. There is no reason not to use grouping whenever applicable.

chrisforce
10-04-2017, 04:17 AM
Basically grouping is a concept that is mainly used to reduce the code redundancy. It also helps to apply same styles to different elements without repeating the CSS styles by providing the selectors with a comma between each selector.

damponting44
10-05-2017, 12:49 AM
Grouping in CSS is a method used to lessen code repetition and compose perfect, succinct simple to take after code.

There will be many examples in which various CSS selectors will have similar statements. In these cases, you can assemble every one of the selectors together and compose the revelations just a single time.

It is essential to take note of that diverse sorts of selectors can be gathered with each other.

There are three principle sorts of CSS selectors, the component selector, id selector and class selector.

The component selector utilizes component names with a specific end goal to choose the components. The id selector chooses components by taking a gander at the id trait of a HTML component. It is meant with the # character and alludes to a one of a kind component inside the page.