CSS3 テキスト効果の例 1:
テキストシャドウ:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>CSS3 文本阴影</title> <style> h1{text-shadow: 5px 5px 5px #FF0000;} </style> </head> <body> <h1>文本阴影效果!</h1> </body> </html>
例 2: CSS3 自動行折り返し
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS3 自动换行</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>
以上がCSS3 テキストの効果の 2 つの例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。