[CSS] 게시판 내 연속문자열 입력 깨짐 방지
style.css
아래와 같이 선언 할 경우 td 테이블 내에
연속적인 문자열 "1111111111111111111111111111111111111111111111111" 이 입력시, 테이블 깨짐을 방지
자간도 테이블 내 깔끔하게 정리 할 수 있음.
td.reply {
line-height:14px;
letter-spacing: -0.0em;
font-weight:normal;
font-variant:normal;
text-align:justify;
word-wrap:break-word;
word-break:break-all;
}
아래와 같이 선언 할 경우 td 테이블 내에
연속적인 문자열 "1111111111111111111111111111111111111111111111111" 이 입력시, 테이블 깨짐을 방지
자간도 테이블 내 깔끔하게 정리 할 수 있음.
td.reply {
line-height:14px;
letter-spacing: -0.0em;
font-weight:normal;
font-variant:normal;
text-align:justify;
word-wrap:break-word;
word-break:break-all;
}
댓글