cssbox-dom — HTML/CSS parsing and style resolution for cssbox.
This crate provides the bridge between HTML/CSS input and the cssbox-core
layout engine. It parses HTML documents, resolves CSS styles through the
cascade, and builds the box tree that the layout engine requires.
Usage
use html_to_box_tree;
use Size;
use ;
let html = r#"<div style="width: 200px; height: 100px"></div>"#;
let tree = html_to_box_tree;
let result = compute_layout;