definition:
|
style :: HTML h => String -> [h] -> h
style st = htmlStruct "span" [("class",st)]
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Provides a style for HTML elements.
--- The style argument is the name of a style class defined in a
--- style definition (see `styleSheet`) or in an external
--- style sheet (see form and page parameters `FormCSS` and `PageCSS`).
--- @param st - name of a style class
--- @param hexps - list of HTML expressions
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
style
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
HTML a => String -> [a] -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|