# Avoid using multiple Tailwind CSS classnames when not required
⚠️ This rule _warns_ in the ✅ `recommended` config.
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
## Rule Details
Examples of **incorrect** code for this rule:
```html
This title can be very long, it could get truncated on smaller screens!
```
Examples of **correct** code for this rule:
```html
This title can be very long, it could get truncated on smaller screens!
```
### Why using shorthands?
- ⚖️ **Reduce the amount of classnames**
- 🤓 Significantly **better readability**
## Options
There are no specific options for this rule, yet it uses the general [settings](../../README.md#settings).