CSSUtil.jl

Author JuliaGizmos
Popularity
11 Stars
Updated Last
2 Years Ago
Started In
June 2017

CSSUtil

CSSUtil provides utilities to create and align various web elements on the DOM.

Example Usage

using WebIO
using CSSUtil

el1 = node(:div, "Hello world!")
el2 = node(:div, "Goodbye world!")

el3 = hbox(el1, el2) # aligns horizontally
el4 = hline() # draws horizontal line
el5 = vbox(el1, el2) # aligns vertically