aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/learn
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-tw/learn')
-rw-r--r--files/zh-tw/learn/getting_started_with_the_web/css_basics/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/learn/getting_started_with_the_web/css_basics/index.html b/files/zh-tw/learn/getting_started_with_the_web/css_basics/index.html
index f51f584cf8..25890fc92b 100644
--- a/files/zh-tw/learn/getting_started_with_the_web/css_basics/index.html
+++ b/files/zh-tw/learn/getting_started_with_the_web/css_basics/index.html
@@ -15,7 +15,7 @@ translation_of: Learn/Getting_started_with_the_web/CSS_basics
<p>跟 HTML 一樣,CSS 既非標準程式語言,也不是標記語言, 而是一種風格頁面語言(<em>style sheet language</em>):它能讓你在 HTML 文件中的元素(element)上套用不同的頁面樣式(style)。例如, 當想要將 HTML 頁面上所有段落元素(paragraph elements)裡的文字<strong>全部</strong>轉換成紅色,你會在CSS裡寫:</p>
-<pre class="brush: css notranslate" dir="rtl">p {
+<pre class="brush: css notranslate">p {
color: red;
}</pre>