--- title: attr slug: Web/CSS/attr() translation_of: Web/CSS/attr() ---
С помощью функции CSS attr()
можно извлекать значение атрибута выбранного элемента и использовать это значение в таблице стилей. Функция работает и с псевдо-элементами. В этом случае возвращается значение атрибута элемента, для которого формируется псевдо-элемент.
Функцию attr()
можно использовать с любым свойством CSS, но поддержка иных свойств, кроме {{cssxref("content")}}, является экспериментальной.
/* Пример простого использования */ attr(data-count); attr(title); /* С типом */ attr(src url); attr(data-count number); attr(data-width px); /* с фоллбэком */ attr(data-count number, 0); attr(src url, ''); attr(data-width px, inherit); attr(data-something, 'default');
attribute-name
<type-or-unit>
{{Experimental_Inline}}<type-or-unit>
в качестве значения для данного атрибута недопустимо, выражение attr()
также будет недопустимым. Если этот параметр опущен, по умолчанию используется string
. Список допустимых значений:Ключевое слово | Тип | Комментарий | Значение по умолчанию |
---|---|---|---|
string |
{{cssxref("<string>")}} | The attribute value is treated as a CSS {{cssxref("<string>")}}. It is NOT reparsed, and in particular the characters are used as-is instead of CSS escapes being turned into different characters. | An empty string |
color {{experimental_inline}} |
{{cssxref("<color>")}} | The attribute value is parsed as a hash (3- or 6-value hash) or a keyword. It must be a valid CSS {{cssxref("<string>")}} value. Leading and trailing spaces are stripped. |
currentColor |
url {{experimental_inline}} |
{{cssxref("<url>")}} | The attribute value is parsed as a string that is used inside a CSS url() function.Relative URL are resolved relatively to the original document, not relatively to the style sheet. Leading and trailing spaces are stripped. |
The url about:invalid that points to a non-existent document with a generic error condition. |
integer {{experimental_inline}} |
{{cssxref("<integer>")}} | The attribute value is parsed as a CSS {{cssxref("<integer>")}}. If it is not valid, that is not an integer or out of the range accepted by the CSS property, the default value is used. Leading and trailing spaces are stripped. |
0 , or, if 0 is not a valid value for the property, the property's minimum value. |
number {{experimental_inline}} |
{{cssxref("<number>")}} | The attribute value is parsed as a CSS {{cssxref("<number>")}}. If it is not valid, that is not a number or out of the range accepted by the CSS property, the default value is used. Leading and trailing spaces are stripped. |
0 , or, if 0 is not a valid value for the property, the property's minimum value. |
length {{experimental_inline}} |
{{cssxref("<length>")}} | The attribute value is parsed as a CSS {{cssxref("<length>")}} dimension, that is including the unit (e.g. 12.5em ). If it is not valid, that is not a length or out of the range accepted by the CSS property, the default value is used.If the given unit is a relative length, attr() computes it to an absolute length.Leading and trailing spaces are stripped. |
0 , or, if 0 is not a valid value for the property, the property's minimum value. |
em , ex , px , rem , vw , vh , vmin , vmax , mm , cm , in , pt , or pc {{experimental_inline}} |
{{cssxref("<length>")}} | The attribute value is parsed as a CSS {{cssxref("<number>")}}, that is without the unit (e.g. 12.5 ), and interpreted as a {{cssxref("<length>")}} with the specified unit. If it is not valid, that is not a number or out of the range accepted by the CSS property, the default value is used.If the given unit is a relative length, attr() computes it to an absolute length.Leading and trailing spaces are stripped. |
0 , or, if 0 is not a valid value for the property, the property's minimum value. |
angle {{experimental_inline}} |
{{cssxref("<angle>")}} | The attribute value is parsed as a CSS {{cssxref("<angle>")}} dimension, that is including the unit (e.g. 30.5deg ). If it is not valid, that is not an angle or out of the range accepted by the CSS property, the default value is used.Leading and trailing spaces are stripped. |
0deg , or, if 0deg is not a valid value for the property, the property's minimum value. |
deg , grad , rad {{experimental_inline}} |
{{cssxref("<angle>")}} | The attribute value is parsed as a CSS {{cssxref("<number>")}}, that is without the unit (e.g. 12.5 ), and interpreted as an {{cssxref("<angle>")}} with the specified unit. If it is not valid, that is not a number or out of the range accepted by the CSS property, the default value is used.Leading and trailing spaces are stripped. |
0deg , or, if 0deg is not a valid value for the property, the property's minimum value. |
time {{experimental_inline}} |
{{cssxref("<time>")}} | The attribute value is parsed as a CSS {{cssxref("<time>")}} dimension, that is including the unit (e.g. 30.5ms ). If it is not valid, that is not a time or out of the range accepted by the CSS property, the default value is used.Leading and trailing spaces are stripped. |
0s , or, if 0s is not a valid value for the property, the property's minimum value. |
s , ms {{experimental_inline}} |
{{cssxref("<time>")}} | The attribute value is parsed as a CSS {{cssxref("<number>")}}, that is without the unit (e.g. 12.5 ), and interpreted as an{{cssxref("<time>")}} with the specified unit. If it is not valid, that is not a number or out of the range accepted by the CSS property, the default value is used.Leading and trailing spaces are stripped. |
0s , or, if 0s is not a valid value for the property, the property's minimum value. |
frequency {{experimental_inline}} |
{{cssxref("<frequency>")}} | The attribute value is parsed as a CSS {{cssxref("<frequency>")}} dimension, that is including the unit (e.g. 30.5kHz ). If it is not valid, that is not a frequency or out of the range accepted by the CSS property, the default value is used. |
0Hz , or, if 0Hz is not a valid value for the property, the property's minimum value. |
Hz , kHz {{experimental_inline}} |
{{cssxref("<frequency>")}} | The attribute value is parsed as a CSS {{cssxref("<number>")}}, that is without the unit (e.g. 12.5 ), and interpreted as a {{cssxref("<frequency>")}} with the specified unit. If it is not valid, that is not a number or out of the range accepted by the CSS property, the default value is used.Leading and trailing spaces are stripped. |
0Hz , or, if 0Hz is not a valid value for the property, the property's minimum value. |
% {{experimental_inline}} |
{{cssxref("<percentage>")}} | The attribute value is parsed as a CSS {{cssxref("<number>")}}, that is without the unit (e.g. 12.5 ), and interpreted as a {{cssxref("<percentage>")}}. If it is not valid, that is not a number or out of the range accepted by the CSS property, the default value is used.If the given value is used as a length, attr() computes it to an absolute length.Leading and trailing spaces are stripped. |
0% , or, if 0% is not a valid value for the property, the property's minimum value. |
<fallback>
{{experimental_inline}}attr()
is used, even if it is not used, and must not contain another attr()
expression. If attr()
is not the sole component value of a property, its <fallback>
value must be of the type defined by <type-or-unit>
. If not set, CSS will use the default value defined for each <type-or-unit>
.p::before { content: attr(data-foo) " "; }
<p data-foo="hello">world</p>
{{EmbedLiveSample("Examples", '100%', '80')}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Values', '#attr', 'attr()')}} | {{Spec2('CSS3 Values')}} | Added two optional parameters; can be used on all properties; may return other values than {{cssxref("<string>")}}. These changes are experimental and may be dropped during the CR phase if browser support is too small. |
{{SpecName('CSS2.1', 'generate.html#x18', 'attr()')}} | {{Spec2('CSS2.1')}} | Limited to the {{cssxref("content")}} property; always return a {{cssxref("<string>")}}. |
{{Compat("css.types.attr")}}