aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/_colon_focus-within
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/css/_colon_focus-within')
-rw-r--r--files/ru/web/css/_colon_focus-within/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/css/_colon_focus-within/index.html b/files/ru/web/css/_colon_focus-within/index.html
index 1a8c179fab..a60adff99c 100644
--- a/files/ru/web/css/_colon_focus-within/index.html
+++ b/files/ru/web/css/_colon_focus-within/index.html
@@ -7,7 +7,7 @@ translation_of: 'Web/CSS/:focus-within'
<p><a href="/en-US/docs/Web/CSS">CSS</a> <a href="/en-US/docs/Web/CSS/Pseudo-classes">Псевдо-класс</a> <strong><code>:focus-within</code></strong> соответствует элементу, который либо сам находится в фокусе, либо содержит элемент, который находится в фокусе. Другими словами, он представляет элементу, который соответствует псевдоклассу {{CSSxRef(":focus")}} либо имеет потомка, который соответствует <code>:focus</code>. (Включая потомков в <a href="/en-US/docs/Web/Web_Components/Shadow_DOM">shadow trees</a>.)</p>
-<pre class="brush: css no-line-numbers notranslate">/* Выделяет &lt;div&gt; когда один из его потомков находится в фокусе */
+<pre class="brush: css no-line-numbers">/* Выделяет &lt;div&gt; когда один из его потомков находится в фокусе */
div:focus-within {
background: cyan;
}</pre>
@@ -24,7 +24,7 @@ div:focus-within {
<h3 id="HTML">HTML</h3>
-<pre class="brush: html notranslate">&lt;p&gt;Try typing into this form.&lt;/p&gt;
+<pre class="brush: html">&lt;p&gt;Try typing into this form.&lt;/p&gt;
&lt;form&gt;
&lt;label for="given_name"&gt;Given Name:&lt;/label&gt;
@@ -36,7 +36,7 @@ div:focus-within {
<h3 id="CSS">CSS</h3>
-<pre class="brush: css highlight[7] notranslate">form {
+<pre class="brush: css highlight[7]">form {
border: 1px solid;
color: gray;
padding: 4px;