You appear to be a bot. Output may be restricted
Description
Returns a value without !important
Usage
$string = csstidy::gvw_important( $value );
Parameters
- $value
- ( string ) required –
Returns
string
Source
File name: jetpack/modules/custom-css/csstidy/class.csstidy.php
Lines:
1 to 12 of 12
static function gvw_important($value) { if (csstidy::is_important($value)) { $value = trim($value); $value = substr($value, 0, -9); $value = trim($value); $value = substr($value, 0, -1); $value = trim($value); return $value; } return $value; }