MIZZUmizzu-creations.hashnode.dev·Jun 19, 2024css 텍스트 말줄임 처리 및 문장 수 제어 가이드1. 글의 목적 CSS로 작업하다 보면 텍스트를 말줄임 처리하거나 문장 수를 제어해야 할 때가 자주 있다. 그동안은 구글링을 통해 찾은 코드 조합을 그대로 사용하는 데 그쳤지만, 이번 기회를 통해 그 원리를 제대로 이해하고 직접 활용할 수 있도록 학습해보려 한다. 2. 한 줄 텍스트 말 줄임 한 줄 텍스트에 말줄임을 적용하려면, 우선 HTML 요소가 “가로 너비를 조정할 수 있는” 블록 요소여야 한다. 텍스트가 부모 요소의 가로 너비 내에...CSS
brian treesebriantreese.hashnode.dev·Oct 13, 2023Text Truncation in CSS: Learn Single and Multiple Line Truncation with EaseAre you running into scenarios where you have a single line of text that can get too long and you want to truncate it? How about multiple lines that you want to constrain to a known number of lines and then truncate? Well, in this post I’ll show you ...Text Truncation