Pattern: Ungrouped selectors
Issue: -
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;}