CSS3 テキスト効果
CSS3 テキスト効果
CSS3 には、いくつかの新しいテキスト機能が含まれています。この章では、次のテキストプロパティについて学びます:
- text-shadow
- box-shadow
- text-overflow
- word-wrap
- word-break
CSS3 テキストシャドウ 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ボックス - シャドウプロパティcss3のCSS3ボックスシャドウプロパティは、ボックスシャドウインスタンス
rreeerunプログラムを試してみるinthadow blur effectを追加します <!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 Text Overflowプロパティを確認してください CSS3 テキスト オーバーフロー プロパティは、オーバーフロー コンテンツをユーザーに表示する方法を指定します プログラムを実行して試してみましょう CSS3 の行折り返し 単語が長すぎて領域内に収まらない場合は、領域外に拡張されます: CSS3 の Word Breaking プロパティを使用すると、単語を途中で分割することになる場合でも、テキストを強制的に折り返すことができます: プログラムを実行して試してください CSS3 Word Breaking CSS3 Word Breaking プロパティは改行ルールを指定します: 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>