cssText method

String cssText()

Implementation

String cssText() {
  switch (this) {
    case VerticalAlign.baseline:
      return 'baseline';
    case VerticalAlign.top:
      return 'top';
    case VerticalAlign.bottom:
      return 'bottom';
  }
}