text-overflow 속성은 텍스트가 포함된 요소에 텍스트가 오버플로될 때 발생해야 하는 작업을 지정하는 데 사용됩니다.
CSS3 text-overflow 속성
역할: text-overflow 속성은 텍스트가 포함 요소를 오버플로할 때 발생하는 상황을 지정합니다.
구문:
text-overflow: clip|ellipsis|string;
clip: 텍스트 자르기.
줄임표: 잘린 텍스트를 나타내기 위해 줄임표를 표시합니다.
string: 주어진 문자열을 사용하여 잘린 텍스트를 나타냅니다.
참고: 모든 주요 브라우저는 text-overflow 속성을 지원합니다.
CSS3 text-overflow 속성 사용 예
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> div.test { white-space:nowrap; width:12em; overflow:hidden; border:1px solid #000000; } div.test:hover { text-overflow:inherit; overflow:visible; } </style> </head> <body> <p>将鼠标移动到框内,查看效果.</p> <div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div> <br> <div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div> </body> </html>
렌더링:
이 문서에 대한 참조: https://www.html.cn/book/css/properties/user-interface /텍스트 -overflow.htm
위 내용은 text-overflow 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!