CSS3 텍스트 효과
CSS3 텍스트 효과
CSS3에는 몇 가지 새로운 텍스트 기능이 포함되어 있습니다.
이 장에서는 다음 텍스트 속성에 대해 배웁니다.
text-shadow
box-shadow
text-overflow
word-wrap
word-break
CSS3 text Shadow
CSS3에서는 text-shadow 속성이 텍스트 그림자에 적합합니다.
가로 그림자, 세로 그림자, 흐림 거리 및 그림자 색상을 지정합니다.
예
제목에 그림자를 추가하려면:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> h1 { text-shadow: 5px 5px 5px #FF0000; } </style> </head> <body> <h1>文本阴影效果!</h1> </body> </html>
프로그램을 실행하여 사용해 보세요
CSS3의 Shadow 속성
CSS3 Box -Shadow 속성은 Box Shadow 인스턴스에 적용됩니다. <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
<style>
div
{
width:300px;
height:100px;
background-color:yellow;
box-shadow: 10px 10px 5px #ff2332;
}
</style>
</head>
<body>
<div>盒子阴影</div>
</body>
</html>
프로그램을 실행하여 사용해 보세요.
을 확인해 보세요. CSS3 텍스트 오버플로 속성은 오버플로 콘텐츠가 사용자에게 표시되는 방법을 지정합니다. 프로그램을 실행하여 사용해 보세요. CSS3의 줄 바꿈 단어가 너무 길어서 한 영역에 맞지 않으면 밖으로 확장됩니다. CSS3, 단어 분리 속성을 사용하면 텍스트를 강제로 줄 바꿈할 수 있습니다. 중간에 단어가 분리되는 경우에도 마찬가지입니다. 프로그램을 실행하여 시도해 보세요. CSS3 단어 분리 CSS3 단어 분리 속성은 줄 바꿈 규칙을 지정합니다: CSS 코드는 다음과 같습니다: 프로그램을 실행하여 사용해 보세요<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
<style>
div {
width: 300px;
height: 100px;
padding: 15px;
background-color: yellow;
box-shadow: 10px 10px 5px #d93bb3;
}
</style>
</head>
<body>
<div>这是一个带有模糊效果的阴影</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
<style>
div.test
{
white-space:nowrap;
width:12em;
overflow:hidden;
border:1px solid #000000;
}
</style>
</head>
<body>
<p>以下 div 容器内的文本无法完全显示,可以看到它被裁剪了。</p>
<p>div 使用 "text-overflow:ellipsis":</p>
<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div>
<p>div 使用 "text-overflow:clip":</p>
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
<p>div 使用自定义字符串 "text-overflow: >>"(只在 Firefox 浏览器下有效):</p>
<div class="test" style="text-overflow:'>>';">This is some long text that will not fit in the box</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
<style>
p.test
{
width:11em;
border:1px solid #000000;
word-wrap:break-word;
}
</style>
</head>
<body>
<p class="test"> This paragraph contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.</p>
</body>
</html>