ComboStrap implements in most of its components the marki language. It's a simplified version of the HTML language and follows the same rules.
Below, we describe the syntax, they all have in common.
Every marki component follows this syntax
<component type name1="value1" ... nameN="valueN" >
<!-- content -->
</component>
where:
Every component implements also a set of styling attributes
Example:
<component color="blue">
<component width="100px">
Due to security concerns, the HTML attributes are by default not supported.
You may use the class but not the others such as the style because it allows attacks such as ClickJacking.