cssPrefix property

String cssPrefix

Gets the CSS property prefix for the current platform.

Implementation

String get cssPrefix {
  var prefix = _cachedCssPrefix;
  if (prefix != null) return prefix;
  if (isFirefox) {
    prefix = '-moz-';
  } else if (isIE) {
    prefix = '-ms-';
  } else if (isOpera) {
    prefix = '-o-';
  } else {
    prefix = '-webkit-';
  }
  return _cachedCssPrefix = prefix;
}