diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-27 02:31:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 02:31:24 +0300 |
commit | 980fe00a74a9ad013b945755415ace2e5429c3c2 (patch) | |
tree | a1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/css/_colon_first/index.html | |
parent | 374a039b97a11ee7306539d16aaab27fed66b398 (diff) | |
download | translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2 translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip |
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/web/css/_colon_first/index.html')
-rw-r--r-- | files/ru/web/css/_colon_first/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/_colon_first/index.html b/files/ru/web/css/_colon_first/index.html index 82f0a46dbc..5f83d32cd6 100644 --- a/files/ru/web/css/_colon_first/index.html +++ b/files/ru/web/css/_colon_first/index.html @@ -12,7 +12,7 @@ translation_of: 'Web/CSS/:first' <p><a href="/ru/docs/Web/CSS">CSS</a> <a href="/ru/docs/Web/CSS/%D0%9F%D1%81%D0%B5%D0%B2%D0%B4%D0%BE-%D0%BA%D0%BB%D0%B0%D1%81%D1%81%D1%8B">псевдокласс</a> <strong><code>:first</code></strong> используется с @-правилом {{cssxref("@page")}}, представляя первую страницу документа при печати.</p> -<pre class="brush: css no-line-numbers notranslate">/* Выбирает первую страницу при печати */ +<pre class="brush: css no-line-numbers">/* Выбирает первую страницу при печати */ @page :first { margin-left: 50%; margin-top: 50%; @@ -30,14 +30,14 @@ translation_of: 'Web/CSS/:first' <h3 id="HTML">HTML</h3> -<pre class="brush: html notranslate"><p>Первая страница.</p> +<pre class="brush: html"><p>Первая страница.</p> <p>Вторая страница.</p> <button>Напечатать</button> </pre> <h3 id="CSS">CSS</h3> -<pre class="brush: css notranslate">@page :first { +<pre class="brush: css">@page :first { margin-left: 50%; margin-top: 50%; } @@ -49,7 +49,7 @@ p { <h3 id="JavaScript">JavaScript</h3> -<pre class="brush: js notranslate">document.querySelector("button").onclick = function () { +<pre class="brush: js">document.querySelector("button").onclick = function () { window.print(); } </pre> |