A função attr() do CSS é utilizada para se obter o valor de um determinado atributo do elemento selecionado e usá-lo na folha de estilo. Também pode ser utilizado em pseudo-elementos, nesse caso o valor do atributo no pseudo-elemento do elemento original é retornado.
css
/* Uso Simples */
attr(data-count);
attr(title);
/* Com o tipo */
attr(src url);
attr(data-count number);
attr(data-width px);
/* Com fallback */
attr(data-count number, 0);
attr(src url, '');
attr(data-width px, inherit);
attr(data-something, 'default');
Nota:
A função attr() pode ser utilizada com qualquer propriedade CSS, mas o suporte para propriedades que não sejam content é experimental.
É uma palavra-chave representando tanto o tipo quanto o valor do atributo, ou sua unidade, assim como no HTML alguns atributos tem unidades implícitas. Se o uso de como um valor para determinado atributo for inválido, a expressão attr() será inválida também. Se omitida, o padrão será string. A lista de valores válidos é:
Palavra-chave
Tipo Associado
Comentário
Valor Padrão
string
O valor do atributo é tratado como um CSS . NÃO será reparado, e em particular os caracteres usados .
An empty string.
corExperimental
O valor do atributo é analisado como hash (3- ou 6-valores hash) ou a palavra-chave. Precisa ser um valor CSS válido. Os espaços do lead e trail são retirados.
corAtual
urlExperimental
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.
integerExperimental
The attribute value is parsed as a CSS . 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.
numberExperimental
The attribute value is parsed as a CSS . 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.
lengthExperimental
The attribute value is parsed as a CSS 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 pcExperimental
The attribute value is parsed as a CSS , that is without the unit (e.g. 12.5), and interpreted as a 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.
angleExperimental
The attribute value is parsed as a CSS 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, radExperimental
The attribute value is parsed as a CSS , that is without the unit (e.g. 12.5), and interpreted as an 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.
timeExperimental
The attribute value is parsed as a CSS 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, msExperimental
The attribute value is parsed as a CSS , that is without the unit (e.g. 12.5), and interpreted as an 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.
frequencyExperimental
The attribute value is parsed as a CSS 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, kHzExperimental
The attribute value is parsed as a CSS , that is without the unit (e.g. 12.5), and interpreted as a 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
The attribute value is parsed as a CSS , that is without the unit (e.g. 12.5), and interpreted as a . 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.
The value to be used if the associated attribute is missing or contains an invalid value. The fallback value must be valid where 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 value must be of the type defined by . If not set, CSS will use the default value defined for each .