m-text
Adds text
Attributes
Attribute | Default Value | Description |
---|---|---|
bold | Bold text | |
text-decoration | none | Underline style. Can be set to underline, line-through, or none |
color | #000000 | Text color |
href | If set, turns the text into a hyperlink | |
font-family | Verdana, Arial, Helvetica, sans-serif | Font family |
font-size | 14px | Font size in px or pt |
line-height | 140% | Line height in px or % |
Example
Simple text
html
<m-text bold color="#cccccc" font-size="12px">Lorem ipsum sit dolar</m-text>
Link
html
<m-text href="https://pixcraft.io" color="#0000cc">some link</m-text>
Html-link in m-text
html
<m-text color="#cccccc">text with some <a href="#" style="color:#0000cc">link</a></m-text>