You appear to be a bot. Output may be restricted
Description
Generate CSS3 definitions for a given ruleNote: The unprefixed version is defined first.
Usage
oik_logo_css3( $rule, $value );
Parameters
- $rule
- ( string ) required – the base CSS property name
- $value
- ( string ) required – the value to be set
Returns
voidSource
File name: oik/shortcodes/oik-logo.phpLines:
1 to 5 of 5
function oik_logo_css3( $rule, $value ) { foreach ( array( '', '-o-', '-webkit-', '-khtml-', '-moz-', '-ms-' ) as $prefix ) { e( $prefix . $rule . ': ' . $value . '; ' ); } }View on GitHub View on Trac