diff options
Diffstat (limited to 'files/ru/web/css/attribute_selectors/index.html')
-rw-r--r-- | files/ru/web/css/attribute_selectors/index.html | 8 |
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> |