Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 474 Bytes

group-selectors.md

File metadata and controls

22 lines (14 loc) · 474 Bytes

Pattern: Ungrouped selectors

Issue: -

Description

Identify the selectors, which can be grouped, as they have same set of properties and values.

  .a{ display: inline-block;width: 100px;}
  .b{display:inline-block;width:100px;}

Above selectors can be grouped like this:

.a,.b{display:inline-block;width: 100px;}

Further Reading