#styletest:'styletest' example
Style test
Main library: styletest:'styletest'
Main element:
Gist: https://gist.github.com/scrivvysolutions/987b8d53085b3e27983e
DartPad: https://dartpad.dartlang.org/987b8d53085b3e27983e
#styletest:'styletest' example
Style test
Main library: styletest:'styletest'
Main element:
Gist: https://gist.github.com/scrivvysolutions/987b8d53085b3e27983e
DartPad: https://dartpad.dartlang.org/987b8d53085b3e27983e
<!doctype html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<p>Test</p> | |
<script type="application/dart" src="main.dart"></script> | |
</body> | |
</html> |
import 'dart:html'; | |
main() { | |
ElementList<ParagraphElement> plist = document.querySelectorAll("p"); | |
plist.forEach( (elem) { | |
elem.style.backgroundColor = "#ff0000"; | |
elem.style.color = "#ffffff"; | |
}); | |
} |
name: styletest.'styletest' | |
description: > | |
Style test | |
homepage: https://gist.github.com/scrivvysolutions/987b8d53085b3e27983e | |
environment: | |
sdk: '>=1.0.0 <2.0.0' |