You appear to be a bot. Output may be restricted
Description
Return a CSS declaration – property: value pair
Usage
$string = oik_rwd_dynamic_css_pv( $property, $value );
Parameters
- $property
- ( string ) required – the property name e.g. color
- $value
- ( string ) required – the property value e.g. red
Returns
string suitable for concatenating to other declarations in the declaration blockSource
File name: oik-rwd/shortcodes/oik-rwd.phpLines:
1 to 4 of 4
function oik_rwd_dynamic_css_pv( $property, $value ) { return( "$property: $value; " ); }View on GitHub