diff options
author | whw1sfb <whwlsfb@vip.qq.com> | 2023-03-19 14:05:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 14:05:01 +0800 |
commit | e5dd5d73357715110c18c1ac31711f3a81b84a0c (patch) | |
tree | 9ff8e3f876998913c347eb5e33de9c5a298014e8 | |
parent | a9fed7c364061ae6efb37f797b6b522cb3cf7aa2 (diff) |
fix output-html text overflow.
-rw-r--r-- | style.css | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -37,7 +37,10 @@ cursor: default;
}
-.output-html p {margin: 0 0.5em;}
+.output-html p {
+ margin: 0 0.5em;
+ overflow-wrap: break-word;
+}
.row > *,
.row > .gr-form > * {
|