aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/general_sibling_combinator/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/css/general_sibling_combinator/index.html')
-rw-r--r--files/ru/web/css/general_sibling_combinator/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/general_sibling_combinator/index.html b/files/ru/web/css/general_sibling_combinator/index.html
index 0cbeea8eec..c55e631ec9 100644
--- a/files/ru/web/css/general_sibling_combinator/index.html
+++ b/files/ru/web/css/general_sibling_combinator/index.html
@@ -7,16 +7,16 @@ translation_of: Web/CSS/General_sibling_combinator
---
<div><span class="s1">{{CSSRef("Selectors")}}</span></div>
-<h2 id="Summary" name="Summary">Описание</h2>
+<h2 id="Summary">Описание</h2>
<p>Общий комбинатор смежных селекторов <code>(~)</code> разделяет два селектора и находит второй элемент только если ему предшествует первый, и они оба имеют общего родителя. Свойства будут применены ко всем элементам, указанным в правой части, следующим за элементом, указанным в левой части.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox">element ~ element { <em>style properties</em> }
</pre>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<pre class="brush: css">p ~ span {
color: red;
@@ -29,7 +29,7 @@ translation_of: Web/CSS/General_sibling_combinator
<p>{{ EmbedLiveSample('Example', 280, 120) }}</p>
-<h2 id="Specifications" name="Specifications">Спецификации</h2>
+<h2 id="Specifications">Спецификации</h2>
<table class="standard-table">
<thead>