티스토리 뷰

🌈 Html

텍스트 줄림 처리(css)

James Wetzel 2023. 10. 13. 11:38
728x90
반응형
<div>This is a long text that will be truncated if it is too wide.</div>
div {
  width: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

 

728x90
반응형