본문 바로가기

한 줄 이상 텍스트가 길어지면 ... 으로 표기하기

codeConnection 2024. 6. 25.
const StyledTitle = styled.div`
  font-size: 25px;
  font-weight: 800;
  margin-top: 10px;
  
  // 이 아래 설정 참고
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
`;

 

 

댓글