* @param css The css representation of the value.
* @return The style value.
*/
public static PropertyValue getPropertyValue(StyleProperty property, String css) {
CSSParser parser = CSS_PARSER_FACTORY.createStrictParser();
return parser.parsePropertyValue(property, css);
}
/**
* Build a styles with initial values.
*