HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
💌
JJong’s Archive
/
말줄임표

말줄임표

Tags
CSS
Study Date
Nov 10, 2023
Status
In progress
생성 일시
Nov 10, 2023 08:26 AM
Day
  • 한줄 일 때 말줄임표
    • overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-break: break-all;
 
 
  • 두줄 이상에서 말줄임표
//부모 컨테이너의 max-width를 정해줌 //하위 속성은 텍스트(h1~)아이템에게! overflow: hidden; //말줄임표 이후의 문자들이 안나오게 한다 text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; /* 줄 수 */
 
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
는 세트!