diff options
| author | Mark Otto <[email protected]> | 2016-10-09 15:35:52 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-10-09 15:35:52 -0700 |
| commit | b04e9fb87c8957b33d0a9807e53acfb9f1715bf0 (patch) | |
| tree | 60c44797840ea67be4c68ebf054dffa77b4e446f /docs | |
| parent | d212ff80aea9bc1e60c5622b1110284275c77015 (diff) | |
| download | bootstrap-b04e9fb87c8957b33d0a9807e53acfb9f1715bf0.tar.xz bootstrap-b04e9fb87c8957b33d0a9807e53acfb9f1715bf0.zip | |
separate out the custom html example
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/components/tooltips.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index 0c8ec2155..b4b28377c 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -103,6 +103,11 @@ Hover over the buttons below to see their tooltips. <button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="left" title="Tooltip on left"> Tooltip on left </button> +{% endhighlight %} + +And with custom HTML added: + +{% highlight html %} <button type="button" class="btn btn-secondary" data-toggle="tooltip" data-html="true" title="<em>Tooltip</em> <u>with</u> <b>HTML</b>"> Tooltip with HTML </button> |
