diff options
Diffstat (limited to 'files/ru/web/css/font/index.html')
-rw-r--r-- | files/ru/web/css/font/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/font/index.html b/files/ru/web/css/font/index.html index 7f659fc14f..36e1569c4f 100644 --- a/files/ru/web/css/font/index.html +++ b/files/ru/web/css/font/index.html @@ -88,7 +88,7 @@ translation_of: Web/CSS/font <h2 id="Примеры">Примеры</h2> -<pre class="brush: css notranslate">/* Set the font size to 12px and the line height to 14px. +<pre class="brush: css">/* Set the font size to 12px and the line height to 14px. Set the font family to sans-serif */ p { font: 12px/14px sans-serif } @@ -112,7 +112,7 @@ p { font: status-bar } <div class="hidden"> <h4 id="HTML">HTML</h4> -<pre class="brush: html notranslate"><p> +<pre class="brush: html"><p> Change the radio buttons below to see the generated shorthand and it's effect. </p> <form action="createShortHand()"> @@ -208,7 +208,7 @@ p { font: status-bar } <h4 id="CSS">CSS</h4> -<pre class="brush: css notranslate">body, input { +<pre class="brush: css">body, input { font: 14px arial; overflow: hidden; } @@ -261,7 +261,7 @@ p { font: status-bar } <h4 id="JavaScript">JavaScript</h4> -<pre class="brush: js notranslate">var textAreas = document.getElementsByClassName("curCss"), +<pre class="brush: js">var textAreas = document.getElementsByClassName("curCss"), shortText = "", getCheckedValue, setCss, |