%BP meta-HTML element
Syntax
%BP(css_property)
Description
Use the %BP function to expand the generic style into the browser-specific style and add the browser prefix to the CSS property name. 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
The following %BP function expands the generic style:
%BP(box-orient: vertical);
In the case of a WebKit browser (Safari or Chrome), the expanded browser-specific style would be as follows:
-webkit-box-orient: vertical