tkoolen / CSSUtil.jl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

License:Other


Languages

Language:Julia 100.0%