Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 361 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 361 Bytes

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());
}

You can pass a String or List<int> to parse.