Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 686 Bytes

no-text-align-justify.md

File metadata and controls

54 lines (40 loc) · 686 Bytes

Pattern: Use of text-align: justify

Issue: -

Description

Disallows { text-align: justify; } anywhere.

Sources:

Examples

The following pattern are considered violations:

.foo {
  text-align: justify;
}

The following patterns are not considered violations:

.foo {
  text-align: center;
}
.foo {
  text-align: left;
}
.foo {
  text-align: right;
}
.foo {
  text-align: start;
}
.foo {
  text-align: end;
}