Pattern: Text is too wide
Issue: -
Requires width of text greater than 45 characters and less than 80 characters.
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;
}