zIndex property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getzIndex
Gets the value of "z-index"
Implementation
String get zIndex => getPropertyValue('z-index');
setzIndex (String value)
Sets the value of "z-index"
Implementation
set zIndex(String value) {
setProperty('z-index', value, '');
}