-
Notifications
You must be signed in to change notification settings - Fork 126
RML: Elements
Rocket has no prior understanding of XML elements other than the built-in element types.
When parsing a tag Rocket will look up custom elements associated with the tag name and fall back to a generic element. Very few custom elements are required as most of the power in Rocket comes from styling elements with RCSS to produce the desired layout.
The user is encouraged to follow standard HTML guidelines where possible to improve readability across the community.
Elements have a base set of attributes that are common to across all types.
Attributes
id = id (CS)
The unique identifier for the element in this document.
class = cdata (CI)
Assigns a class name or set of class names to an element. Any number of elements may be assigned the same class name or names. Multiple class names must be separated by white space characters. See RCSS
style = cdata (CS)
Specifies inline style information for the element. See RCSS
on events* = cdata (CS)
Event bindings. See Events