aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/glossary/css
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
commit218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch)
treea9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/glossary/css
parent074785cea106179cb3305637055ab0a009ca74f2 (diff)
downloadtranslated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip
initial commit
Diffstat (limited to 'files/zh-tw/glossary/css')
-rw-r--r--files/zh-tw/glossary/css/index.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/css/index.html b/files/zh-tw/glossary/css/index.html
new file mode 100644
index 0000000000..3afe82b10a
--- /dev/null
+++ b/files/zh-tw/glossary/css/index.html
@@ -0,0 +1,49 @@
+---
+title: CSS
+slug: Glossary/CSS
+tags:
+ - CSS
+ - CodingScripting
+ - Web
+ - 'l10n:priority'
+ - 階層式樣式表
+translation_of: Glossary/CSS
+---
+<p><span class="seoSummary"><strong>階層式樣式表</strong>,或稱<strong>層疊樣式表</strong>(Cascading Style Sheets,<strong>CSS</strong>)是控制網頁的外觀,要在{{glossary("瀏覽器")}}裡面如何表現的陳述式語言。</span>瀏覽器會套用 CSS 樣式宣告、以期被選中的元素能正確顯示之。樣式宣告包含了屬性(Property)與屬性值(Value)。它們會判斷網頁如何顯示。</p>
+
+<p>CSS 與 {{Glossary("HTML")}} 及 {{Glossary("JavaScript")}} 並列為網路三大核心技術。CSS 通常用作{{Glossary("Element"," HTML 元素")}}的樣式化,但它也能給其他像 {{Glossary("SVG")}} 或 {{Glossary("XML")}} 之類的標示語言樣式化。</p>
+
+<p>CSS 的規則,是一個{{Glossary("CSS Property","屬性")}}配上一個{{Glossary("selector","選擇器")}}。以下的例子能把所有 HTML 的段落元素,變成黑底黃字:</p>
+
+<pre class="brush: css">/* 選擇器「p」是指所有文件內的段落,都會受這個規則所影響。 */
+p {
+ /* "color" 屬性定義了文字的顏色,本例為黃色。 */
+ color: yellow;
+
+ /* "background-color" 屬性定義了背景的顏色,本例為黑色。 */
+ background-color: black
+}</pre>
+
+<p>階層式樣式表的「階層(Cascading)」一詞,就是在指:如何決定改變網頁外觀的選擇器,其優先次序為何的支配規則。這個功能非常重要,因為一個夠複雜的網頁,可以動用上千個 CSS 規則。</p>
+
+<h2 id="深入了解">深入了解</h2>
+
+<h3 id="基本知識">基本知識</h3>
+
+<ul>
+ <li><a href="https://developer.mozilla.org/zh-TW/docs/Learn/CSS">Learn CSS</a></li>
+ <li>維基百科的 {{interwiki("wikipedia", "CSS")}}</li>
+</ul>
+
+<h3 id="技術參考">技術參考</h3>
+
+<ul>
+ <li><a href="/zh-TW/docs/Web/CSS">MDN 的 CSS 文件</a></li>
+ <li><a href="http://www.w3.org/Style/CSS/current-work" rel="external">CSS 工作小組當前的工作進度</a></li>
+</ul>
+
+<h3 id="深入了解_CSS">深入了解 CSS</h3>
+
+<ul>
+ <li><a href="http://www.codecademy.com/en/tracks/web" rel="external">codecademy.com 的課程</a></li>
+</ul>