diff --git a/docs/userGuide/components/advanced.md b/docs/userGuide/components/advanced.md index b271494c7f..d132f9491a 100644 --- a/docs/userGuide/components/advanced.md +++ b/docs/userGuide/components/advanced.md @@ -83,3 +83,26 @@ Slot name | Default class | Notes --- | --- | --- `modal-header` | `modal-title` | `modal-footer` | `modal-footer` | Specifying `modal-footer` will override the `ok-text` attribute, and the OK button will not render. + +## Insert custom classes into components + +Every component documented in our user guide allows you to insert your own defined CSS classes. +This is done by adding the `add-class` attribute to a component along with the desired class names. + + + Example
+ + Easily apply Bootstrap classes without using a wrapper! + +
+ + +Markup + +```html + + Easily apply Bootstrap classes without using a wrapper! + +``` + +