fix: Line break truncated characters in English(#3103)#3109
fix: Line break truncated characters in English(#3103)#3109wangdan-fit2cloud merged 1 commit intomainfrom
Conversation
| word-break: break-word; | ||
| } | ||
| .md-editor-admonition { | ||
| margin: 0; |
There was a problem hiding this comment.
Great! The code looks mostly clean and well-formatted. Here are a few quick notes for optimization:
-
Word Break: Ensure that the
word-breakproperty is necessary if it resolves any specific layout issues. It may not be needed depending on your content. -
Importance of !important Rule: While using
!importantcan sometimes help with specificity, it's generally recommended to avoid its use unless absolutely necessary because it overrides other styles elsewhere in the stylesheet or HTML. -
Comments: Consider adding comments explaining areas where
!importantis used, especially if this rule might affect accessibility or maintainability later.
If you have more questions about the code or need further assistance, feel free to ask!
What this PR does / why we need it?
Summary of your change
Please indicate you've done the following: