## mj-style
This tag allows you to set CSS styles that will be applied to the HTML in your MJML document as well as the HTML outputted. The CSS styles will be added to the head of the rendered HTML by default, but can also be inlined by using the `inline="inline"` attribute.
Here is an example showing the use in combination with the `css-class` attribute, which is supported by all body components.
```xml
.blue-text div {
color: blue !important;
}
.red-text div {
color: red !important;
text-decoration: underline !important;
}
I'm red and underlinedI'm blue because of inlineI'm green
```
attribute | unit | description | default value
---------------------|---------------|-------------------------------------|---------------
inline | string | set to "inline" to inline styles | n/a