commit | 158bfa94eed08c12c07a8ee0a3fded0ebdcd1fcb | [log] [tgz] |
---|---|---|
author | Nate Bosch <nbosch@google.com> | Tue Dec 07 10:21:21 2021 -0800 |
committer | GitHub <noreply@github.com> | Tue Dec 07 10:21:21 2021 -0800 |
tree | 491ea716fdb0c83712b9e2605c6fc725b893ee6d | |
parent | 6fc1c302467a7812f161842e1c4b757c17c1fa82 [diff] |
Revert "Comma separate keyframe percentage lists (#143)" (#147) This reverts commit 785ae0ff718b03090c565ea4d898bc782bdeaf0f.
A Dart CSS parser.
Parsing CSS is easy!
import 'package:csslib/parser.dart'; main() { var stylesheet = parse( '.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }'); print(stylesheet.toDebugString()); }
You can pass a String
or List<int>
to parse
.