diff options
Diffstat (limited to 'files/ru/web/css/child_combinator/index.html')
-rw-r--r-- | files/ru/web/css/child_combinator/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/child_combinator/index.html b/files/ru/web/css/child_combinator/index.html index a3b8638f70..ca8d8a725f 100644 --- a/files/ru/web/css/child_combinator/index.html +++ b/files/ru/web/css/child_combinator/index.html @@ -5,16 +5,16 @@ translation_of: Web/CSS/Child_combinator --- <p>{{CSSRef("Selectors")}}</p> -<h2 id="Summary" name="Summary">Описание</h2> +<h2 id="Summary">Описание</h2> <p><code>Комбинатор ></code> разделяет 2 селектора, находит элементы заданные вторым селектором, являющие <strong>прямыми </strong>потомками для элементов отобранных первым селектором. Напротив, два селектора в <a href="/ru/docs/Web/CSS/Descendant_selectors">селекторе потомков</a> находят элементы не обязательно являющиеся прямыми потомками, т.е. несмотря на количество "прыжков" до них в DOM.</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="eval">selector1 > selector2 { <em>style properties</em> } </pre> -<h2 id="Example" name="Example">Пример</h2> +<h2 id="Example">Пример</h2> <pre class="brush: css">span { background-color: white; } div > span { @@ -32,7 +32,7 @@ div > span { <p>{{ EmbedLiveSample('Example', 200, 100) }}</p> -<h2 id="Specifications" name="Specifications">Спецификации</h2> +<h2 id="Specifications">Спецификации</h2> <table class="standard-table"> <thead> |