-
[HTML & CSS] 말줄임표 예제ETC 2022. 1. 22. 14:35반응형
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>Page Title</title> <meta name='viewport' content='width=device-width, initial-scale=1'> </head> <style> .txt_line { width:70px; padding:0 5px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } </style> <body> <div style="width:100px;height:100px;"> <div class='txt_line'>this text not show all.</div> </div> </body> </html>
결과
Page Title this text not show all.반응형'ETC' 카테고리의 다른 글
[Gitpod] 무료 브라우저 기반 VSCode 개발환경 GitPod 소개 (0) 2022.02.05 [HTML & CSS] 열(Column)만 고정처리 예제 (0) 2022.01.22 [VSCode] 특정 문자를 찾아 개행하는 미세먼지팁 (1) 2021.12.26 [VSCode] remote-ssh 로 연결 안 될 때 확인할 사항 (0) 2021.11.21 [WASM] WSL-Ubuntu에 emscripten 설치 (0) 2021.11.15