Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 587 Bytes

no-display-none.md

File metadata and controls

29 lines (20 loc) · 587 Bytes

Pattern: Use of display: none;

Issue: -

Description

Sources that will help you do without { display: none; } and hide the content:

Examples

The following pattern are considered violations:

.foo {
  display: none;
}

The following patterns are not considered violations:

.foo {
  display: flex;
}