css text-decoration属性


  翻訳結果:

text

English[tekst] American[tɛkst]

n. テキスト、原文; テキスト、教科書; テーマ; バージョン

v .Send text message

decoration

英[ˌdekəˈreɪʃn] 美[ˌdɛkəˈreʃən]

n. 装飾; 装飾、装飾; 装飾模様、装飾スタイル ;メダル

css text-decoration属性構文

関数: text-decoration 属性は、テキストに追加される装飾を指定します。

説明: この属性を使用すると、テキストに下線などの特定の効果を設定できます。子孫要素に独自の装飾がない場合、祖先要素に設定された装飾は子孫要素にも「拡張」されます。ユーザー エージェントはまばたきをサポートする必要はありません。

注: すべての主要なブラウザは text-decoration 属性をサポートしています。属性値「inherit」は、Internet Explorer (IE8 を含む) のどのバージョンでもサポートされていません。 「blink」属性値は、IE、Chrome、または Safari ではサポートされていません。

css text-decoration属性例

<html>
<head>
<style type="text/css">
h1 {text-decoration: overline}
h2 {text-decoration: line-through}
h3 {text-decoration: underline}
h4 {text-decoration:blink}
a {text-decoration: none}
</style>
</head>
<body>
<h1>这是标题 1</h1>
<h2>这是标题 2</h2>
<h3>这是标题 3</h3>
<h4>这是标题 4</h4>
<p><a href="http://www.php.cn/">这是一个链接</a></p>
</body>
</html>
インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します

人気のおすすめ

ホームページ

動画

に質問