Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 547 Bytes

no-spread-text.md

File metadata and controls

46 lines (34 loc) · 547 Bytes

Pattern: Text is too wide

Issue: -

Description

Requires width of text greater than 45 characters and less than 80 characters.

Examples

The following pattern are considered violations:

.foo {
  text-transform: lowercase;
  max-width: 40ch;
}
.foo {
  line-height: 1.8;
  max-width: 82ch;
}

The following patterns are not considered violations:

.foo {
  max-width: 65ch;
}
.foo {
  max-width: 82ch;
}
.foo {
  max-width: 100px;
}