/* NON GENERIC OPTIONS
 * Following options are only usefull for one css property.
 */
.ta-start {
  text-align: start;
}

.ta-center {
  text-align: center;
}

.ta-end {
  text-align: end;
}

.ta-justify {
  text-align: justify;
}

.ellipsis :is(p, a) {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.break-word {
  word-wrap: break-word;
}
