aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/_colon_host()/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/css/_colon_host()/index.html')
-rw-r--r--files/ru/web/css/_colon_host()/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/css/_colon_host()/index.html b/files/ru/web/css/_colon_host()/index.html
index 19830a0c9c..b285765913 100644
--- a/files/ru/web/css/_colon_host()/index.html
+++ b/files/ru/web/css/_colon_host()/index.html
@@ -15,7 +15,7 @@ translation_of: 'Web/CSS/:host()'
<p><strong>Примечание</strong>: Псевдокласс не имеет эффекта вне shadow DOM.</p>
</div>
-<pre class="brush: css; no-line-numbers notranslate">/* Выбирает хоста shadow root, только
+<pre class="brush: css; no-line-numbers">/* Выбирает хоста shadow root, только
  если он соответствует аргументу селектора */
:host(.special-custom-element) {
font-weight: bold;
@@ -34,11 +34,11 @@ translation_of: 'Web/CSS/:host()'
<p>В этом примере у нас есть простой пользовательский элемент — <code>&lt;context-span&gt;</code> — который мы оборачиваем вокруг текста:</p>
-<pre class="brush: html; notranslate">&lt;h1&gt;Host selectors &lt;a href="#"&gt;&lt;context-span&gt;example&lt;/context-span&gt;&lt;/a&gt;&lt;/h1&gt;</pre>
+<pre class="brush: html;">&lt;h1&gt;Host selectors &lt;a href="#"&gt;&lt;context-span&gt;example&lt;/context-span&gt;&lt;/a&gt;&lt;/h1&gt;</pre>
<p>Внутри конструктора элемента мы создаём элементы <code>style</code> и <code>span</code>, заполняем <code>span</code> контентом пользовательского элемента и заполняем элемент <code>style</code> CSS-правилами:</p>
-<pre class="brush: js; notranslate">let style = document.createElement('style');
+<pre class="brush: js;">let style = document.createElement('style');
let span = document.createElement('span');
span.textContent = this.textContent;