diff options
Diffstat (limited to 'files/ru/web/css/_colon_host()/index.html')
-rw-r--r-- | files/ru/web/css/_colon_host()/index.html | 6 |
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><context-span></code> — который мы оборачиваем вокруг текста:</p> -<pre class="brush: html; notranslate"><h1>Host selectors <a href="#"><context-span>example</context-span></a></h1></pre> +<pre class="brush: html;"><h1>Host selectors <a href="#"><context-span>example</context-span></a></h1></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; |