카테고리 없음
[html/css] table 칸 넓이 고정, 넘치면 말줄임표
kimnaa
2021. 4. 21. 20:22
반응형
.body_table tr td{
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
}
table 칸보다 내용이 길어 넘칠 경우, 말줄임표로 뒷부분 안보이게 하기
table tr td{
overflow: hidden;
white-space: initial;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
word-break: break-all;
}
테이블 td 칸 넓이가 변하지 않고 안에 내용이 밑으로 내려가게
반응형