Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Small correction on documentation
  • Loading branch information
elchininet committed Jul 31, 2023
commit de9d51f4375b59abf0384f47c8867f0ee6174491
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ This is the recommended method, it will generate more CSS code but each directio

#### Output using the override mode

This is one of the alternative methods to override. It will generate less code because it lets the main rule intact and generates a shorter specific rule to override the properties that are affected by the direction of the text.
This is one of the alternative methods to override. It will generate less code because it lets the main rule intact most of the time and generates shorter specific rules to override the properties that are affected by the direction of the text.

```css
.test1, .test2 {
Expand Down Expand Up @@ -226,7 +226,7 @@ This is the second alternative method to override. It generates the minimum amou

But the two methods to override have a disadvantage:

<details><summary>Disadvantage of the methods to override</summary>
<details><summary>Disadvantage of the override methods</summary>
<p>

Use these methods carefully. They can override a property that is coming from another class if multiple classes are used at the same time. Take a look at the next `HTML` and `CSS` codes:
Expand Down