%BB meta-HTML element
Syntax
%BB(css_property)
Description
Use the %BB function to expand the generic style into the browser-specific style and add the browser prefix to the both the CSS property name and the property value. Use this function in free form style sheet definitions only.
Note:
Use this function in style sheet definitions only.
Note:
This function is valid for use in auxiliary style sheet files.
Parameters
| Parameter | Description |
|---|---|
|
css_property |
Specifies the CSS property as a String value. |
Example
%BB(transition:transform 1s ease-in-out 0.3s);
In the case of Firefox, the expanded browser-specific style would be as follows:
-moz-transition:-moz-transform 1s ease-in-out 0.3s