diff options
Diffstat (limited to 'files/ru/web/css/_colon_not/index.html')
-rw-r--r-- | files/ru/web/css/_colon_not/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/files/ru/web/css/_colon_not/index.html b/files/ru/web/css/_colon_not/index.html index a6d56ca8cc..b95fcd56b8 100644 --- a/files/ru/web/css/_colon_not/index.html +++ b/files/ru/web/css/_colon_not/index.html @@ -5,7 +5,7 @@ translation_of: 'Web/CSS/:not' --- <div>{{ CSSRef() }}</div> -<h2 id="Summary" name="Summary">Описание</h2> +<h2 id="Summary">Описание</h2> <p><strong>Отрицательный </strong><a href="/ru/docs/CSS/Pseudo-classes" title="Pseudo-classes">CSS псевдокласс</a>, <code>:not(X)</code> - функция, принимающая простой селектор <var>X</var> в качестве аргумента. Он находит элементы, не соответствующие селектору. <var>X</var> не должен содержать других отрицательных селекторов.</p> @@ -19,11 +19,11 @@ translation_of: 'Web/CSS/:not' </ul> </div> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="syntaxbox">:not(selector) { <em>style properties</em> }</pre> -<h2 id="Examples" name="Examples">Пример</h2> +<h2 id="Examples">Пример</h2> <pre class="brush: css">p:not(.classy) { color: red; } body :not(p) { color: green; }</pre> @@ -39,7 +39,7 @@ body :not(p) { color: green; }</pre> <p>{{ EmbedLiveSample('Examples', '', '', '', 'Web/CSS/:not') }}</p> -<h2 id="Specifications" name="Specifications">Спецификации</h2> +<h2 id="Specifications">Спецификации</h2> <table class="standard-table"> <thead> @@ -63,6 +63,6 @@ body :not(p) { color: green; }</pre> </tbody> </table> -<h2 id="Browser_compatibility" name="Browser_compatibility">Поддержка браузерами</h2> +<h2 id="Browser_compatibility">Поддержка браузерами</h2> <p>{{Compat("css.selectors.not")}}</p> |