줄바꿈수정정

This commit is contained in:
khj0414 2025-04-08 13:39:54 +09:00
parent 4772077cc1
commit 10a955f13f

View File

@ -233,10 +233,10 @@ const handleCategoryFocusout = (value) => {
</script>
<style>
.q-editor-container {
max-width: 100%; /* 영역이 넘치지 않게 */
overflow: auto; /* 넘치는 내용은 스크롤로 처리 */
word-wrap: break-word; /* 긴 단어는 자동으로 줄바꿈 */
white-space: normal; /* 내용이 길어지면 자동으로 줄바꿈 */
.q-editor-container * {
max-width: 100% !important;
word-break: break-all !important;
box-sizing: border-box;
white-space: normal !important;
}
</style>