>  기사  >  웹 프론트엔드  >  text-overflow 속성을 사용하는 방법

text-overflow 속성을 사용하는 방법

青灯夜游
青灯夜游원래의
2019-02-11 15:43:313860검색

text-overflow 속성은 텍스트가 포함된 요소에 텍스트가 오버플로될 때 발생해야 하는 작업을 지정하는 데 사용됩니다.

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>

렌더링:

text-overflow 속성을 사용하는 방법

이 문서에 대한 참조: https://www.html.cn/book/css/properties/user-interface /텍스트 -overflow.htm

위 내용은 text-overflow 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.