dart-lang / csslib

A library for parsing CSS.

Home Page:https://pub.dev/packages/csslib

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dart CI pub package package publisher

A Dart CSS parser.

Usage

Parsing CSS is easy!

import 'package:csslib/parser.dart';

void 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.

About

A library for parsing CSS.

https://pub.dev/packages/csslib

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%