aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/attribute_selectors
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-20 13:28:52 +0300
committerGitHub <noreply@github.com>2021-10-20 13:28:52 +0300
commit1386fed7d38652d5848d315927e7e23a66cffd13 (patch)
treeeb4b9adfec3f46c77304a1b9461d44357c8164c8 /files/ru/web/css/attribute_selectors
parentb0f32a46245b1033098a5a9826a7818fa4e65dde (diff)
downloadtranslated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.gz
translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.bz2
translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.zip
[RU] Remove `name` attribute from headings (#2788)
Diffstat (limited to 'files/ru/web/css/attribute_selectors')
-rw-r--r--files/ru/web/css/attribute_selectors/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/attribute_selectors/index.html b/files/ru/web/css/attribute_selectors/index.html
index 05a2349484..38bc02e15c 100644
--- a/files/ru/web/css/attribute_selectors/index.html
+++ b/files/ru/web/css/attribute_selectors/index.html
@@ -5,7 +5,7 @@ translation_of: Web/CSS/Attribute_selectors
---
<p><span class="s1">{{CSSRef("Selectors")}}</span></p>
-<h2 id="Summary" name="Summary">Обзор</h2>
+<h2 id="Summary">Обзор</h2>
<p>Селекторы атрибутов отбирают элементы по наличию атрибута или его значению.</p>
@@ -26,7 +26,7 @@ translation_of: Web/CSS/Attribute_selectors
<dd>Обозначает элемент с именем атрибута attr чьё значение содержит по крайней мере одно вхождение строки "value" как подстроки.</dd>
</dl>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<pre class="brush: css">/* Все span с атрибутом "lang" будут жирными */
span[lang] {font-weight:bold;}
@@ -70,7 +70,7 @@ a[href*="example"] {background-color: #CCCCCC;}
<p>{{ EmbedLiveSample('Example', 250, 100) }}</p>
-<h2 id="Specifications" name="Specifications">Спецификации</h2>
+<h2 id="Specifications">Спецификации</h2>
<table class="standard-table">
<thead>
@@ -94,7 +94,7 @@ a[href*="example"] {background-color: #CCCCCC;}
</tbody>
</table>
-<h2 id="Browser_compatibility" name="Browser_compatibility">Совместимость с браузерами</h2>
+<h2 id="Browser_compatibility">Совместимость с браузерами</h2>
<p>{{Compat("css.selectors.attribute")}}</p>