* @param css The css representation of the value.
* @return The style value.
*/
public static StyleValue getStyleValue(StyleProperty property, String css) {
CSSParser parser = CSS_PARSER_FACTORY.createStrictParser();
return parser.parseStyleValue(property, css);
}
/**
* Get the style value associated with a specific property.
* @param property The property whose value is required.