css로 글자 자르기

web 일반 2015. 11. 3. 21:15

 

http://codeigniter-kr.org/tip/view/1711

 

<div style='width:270px; overflow:hidden;white-space:nowrap; text-overflow:ellipsis;'>

    문자열

</div>

 

====================================================================================================

http://ooppa.tistory.com/1375

 

<div style="width:200px; text-overflow:clip; overflow:hidden;">
    <nobr>제목이 긴 문자열로 이루어진 글을 테이블의 폭에 알맞게 잘라줍니다.</nobr>
</div>
 
<div style="width:200px; text-overflow:ellipsis; overflow:hidden;">
    <nobr>제목이 긴 문자열로 이루어진 글을 테이블의 폭에 알맞게 잘라줍니다.</nobr>
</div>

 

<div style="width:200px; text-overflow:ellipsis; overflow:visible;">
   <nobr>제목이 긴 문자열로 이루어진 글을 테이블의 폭에 알맞게 잘라줍니다.</nobr>
</div>

 

 

'web 일반' 카테고리의 다른 글

메일서버가 스팸서버로 인식하는 경우 처리  (0) 2023.09.07
org.xml.sax.SAXNotRecognizedException  (0) 2023.01.10
알아둬야 할 HTTP 공통 & 요청 헤더  (0) 2020.07.20
CORS 설명  (0) 2020.05.29
https 인증서 확인  (0) 2017.12.18
Posted by 張's blog
,