Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 340 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 340 Bytes

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