Module Inline_css.Private

val append : string -> unit

append css_string will append a stylesheet to the webpage

val prepend : string -> unit

prepend is like append, but instead of the added CSS being added to the back of the list of stylesheets, it'll be added to the front.

val create_stylesheet : unit -> Inline_css__.Stylesheet.Style_sheet.t Js_of_ocaml.Js.t Core.Or_error.t
val append_stylesheet : Inline_css__.Stylesheet.Style_sheet.t Js_of_ocaml.Js.t Core.Or_error.t -> unit
val prepend_stylesheet : Inline_css__.Stylesheet.Style_sheet.t Js_of_ocaml.Js.t Core.Or_error.t -> unit
val update_stylesheet : Inline_css__.Stylesheet.Style_sheet.t Js_of_ocaml.Js.t Core.Or_error.t -> string -> unit
module Dynamic : sig ... end

This library allows for "dynamic" use of the CSS Constructed Stylesheet API. It is more powerful than inline_css, but can be much less performant.