csslib

Creator: coderz1093

Last updated:

Add to Cart

Description:

csslib

A Dart CSS parser.
Usage #
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());
}
copied to clipboard
You can pass a String or List<int> to parse.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.