diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/property/css | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/glossary/property/css')
-rw-r--r-- | files/ja/glossary/property/css/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/files/ja/glossary/property/css/index.html b/files/ja/glossary/property/css/index.html new file mode 100644 index 0000000000..11b53f5265 --- /dev/null +++ b/files/ja/glossary/property/css/index.html @@ -0,0 +1,38 @@ +--- +title: Property (プロパティ) (CSS) +slug: Glossary/property/CSS +tags: + - CodingScripting + - Glossary +translation_of: Glossary/property/CSS +--- +<p><strong>CSS のプロパティ</strong>は、関連付けられた値によりブラウザーがどのように要素を表示するかを定義する特性です。</p> + +<p>以下に CSS のルールの例を示します:</p> + +<pre class="brush: css">/* "div" はドキュメント中の全ての div 要素が */ +/* このルールによってスタイルを整えることを示すセレクタです。*/ +div { + /* 値 "black" を持つプロパティ "color" は、*/ + /* テキストの色が黒くなることを示します。*/ + color: black; + + /* 値 "white" を持つプロパティ "background-color" は、*/ + /* 要素の背景色が白くなることを示します。 */ + background-color: white; +}</pre> + +<h2 id="詳細情報">詳細情報</h2> + +<h3 id="General_knowledge" name="General_knowledge">一般知識</h3> + +<ul> + <li><a href="https://developer.mozilla.org/ja/Learn/CSS">Learn CSS</a></li> +</ul> + +<h3 id="Technical_reference" name="Technical_reference">技術リファレンス</h3> + +<ul> + <li><a href="/docs/Web/CSS/Reference">MDN 上の CSS リファレンス</a></li> + <li><a href="http://www.w3.org/Style/CSS/current-work" rel="external">CSS ワーキンググループの現在の成果</a></li> +</ul> |