웹사이트 History 2026/05/14 모바일 환경에서 영어단어 중간 끊기며 행바꿈되는 에러 해결
본문
css 에러 수정
수정 전 (파란색 밑줄 부위)
#bo_v_con {min-height:200px;margin-bottom:20px;width:100%;font-size:1.250em;line-height:1.7em;word-break:break-all;overflow:hidden}

수정 후 (초록색 밑줄 부위)
#bo_v_con {min-height:200px;margin-bottom:20px;width:100%;font-size:1.250em;line-height:1.7em;word-break:keep-all;word-wrap: word-break;overflow:hidden}
#bo_v_con span {word-break:keep-all;word-wrap: word-break;overflow:hidden}
css 구조상 <wrap> 아래 font 규정 <span>이 있어서, <span>에도 word-break. word-wrap을 적용했습니다.
링크 : 애드프로님의 답변

추천0
관련링크
댓글목록 0
등록된 댓글이 없습니다.
