aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:06 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commitba91b017421b001cd226135612a7bd5dfcd88904 (patch)
tree8a14c709a7b50ae02ce16f39f6a47d76a75d8601 /files/zh-tw/web/javascript/reference
parent711e090fcd2bc3e79231a75f88fc75563f135ca2 (diff)
downloadtranslated-content-ba91b017421b001cd226135612a7bd5dfcd88904.tar.gz
translated-content-ba91b017421b001cd226135612a7bd5dfcd88904.tar.bz2
translated-content-ba91b017421b001cd226135612a7bd5dfcd88904.zip
remove inline style for zh-TW
Diffstat (limited to 'files/zh-tw/web/javascript/reference')
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/math/index.html2
-rw-r--r--files/zh-tw/web/javascript/reference/operators/typeof/index.html12
2 files changed, 7 insertions, 7 deletions
diff --git a/files/zh-tw/web/javascript/reference/global_objects/math/index.html b/files/zh-tw/web/javascript/reference/global_objects/math/index.html
index 181af7319c..1c3401c908 100644
--- a/files/zh-tw/web/javascript/reference/global_objects/math/index.html
+++ b/files/zh-tw/web/javascript/reference/global_objects/math/index.html
@@ -41,7 +41,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math
<h2 id="方法">方法</h2>
<div class="note">
-<p>注意三角函數 (<code style="font-style: normal; letter-spacing: -0.00278rem;">sin()</code>, <code style="font-style: normal; letter-spacing: -0.00278rem;">cos()</code>, <code style="font-style: normal; letter-spacing: -0.00278rem;">tan()</code>, <code style="font-style: normal; letter-spacing: -0.00278rem;">asin()</code>, <code style="font-style: normal; letter-spacing: -0.00278rem;">acos()</code>, <code style="font-style: normal; letter-spacing: -0.00278rem;">atan()</code>, <code style="font-style: normal; letter-spacing: -0.00278rem;">atan2()</code>) 的參數或回傳值的角度皆以弧度為單位。把角度乘上 <code style="font-style: normal; letter-spacing: -0.00278rem;">(Math.PI / 180)</code> 會得到弧度單位,將弧度除以該數則會轉換回一般所用的角度單位。</p>
+<p>注意三角函數 (<code>sin()</code>, <code>cos()</code>, <code>tan()</code>, <code>asin()</code>, <code>acos()</code>, <code>atan()</code>, <code>atan2()</code>) 的參數或回傳值的角度皆以弧度為單位。把角度乘上 <code>(Math.PI / 180)</code> 會得到弧度單位,將弧度除以該數則會轉換回一般所用的角度單位。</p>
</div>
<div class="note">
diff --git a/files/zh-tw/web/javascript/reference/operators/typeof/index.html b/files/zh-tw/web/javascript/reference/operators/typeof/index.html
index 585d340255..92d02f05bf 100644
--- a/files/zh-tw/web/javascript/reference/operators/typeof/index.html
+++ b/files/zh-tw/web/javascript/reference/operators/typeof/index.html
@@ -9,9 +9,9 @@ translation_of: Web/JavaScript/Reference/Operators/typeof
<h2 id="摘要">摘要</h2>
-<p style="line-height: 22px;">typeof 運算子會傳回一個字串值, 指出未經運算 (unevaluated) 的運算元所代表的型別。</p>
+<p>typeof 運算子會傳回一個字串值, 指出未經運算 (unevaluated) 的運算元所代表的型別。</p>
-<table class="standard-table" style="line-height: 22px;">
+<table class="standard-table">
<thead>
<tr>
<th colspan="2" scope="col">運算子</th>
@@ -31,13 +31,13 @@ translation_of: Web/JavaScript/Reference/Operators/typeof
<h2 id="語法">語法</h2>
-<p style="line-height: 22px;"><code style="font-size: 14px;">typeof</code> 之後面跟著它的唯一運算元:</p>
+<p><code>typeof</code> 之後面跟著它的唯一運算元:</p>
-<pre style="font-size: 14px;"><code style="font-size: 14px;">typeof <code style="font-size: 14px;"><em>operand</em></code></code></pre>
+<pre><code>typeof <code><em>operand</em></code></code></pre>
-<h2 id="Parameters" name="Parameters" style="margin: 0px 0px 0.8em; padding: 0px;">參數</h2>
+<h2 id="Parameters" name="Parameters">參數</h2>
-<div><code style="line-height: inherit; font-size: 14px;"><em>operand</em></code> 表示式代表傳入的物件或原始型別。</div>
+<div><code><em>operand</em></code> 表示式代表傳入的物件或原始型別。</div>
<h2 id="Description" name="Description">說明</h2>