diff options
| author | XhmikosR <[email protected]> | 2018-07-10 23:26:30 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-07-10 23:26:30 +0300 |
| commit | e9ec13e974d2263bb337fee95388488cefb33a18 (patch) | |
| tree | 1a77e786cd2af4853748c2b7ab099fd986489951 | |
| parent | 591725e8386c30b54e8aca258247c83811f628d8 (diff) | |
| download | bootstrap-e9ec13e974d2263bb337fee95388488cefb33a18.tar.xz bootstrap-e9ec13e974d2263bb337fee95388488cefb33a18.zip | |
Update tooltips.md
| -rw-r--r-- | docs/4.1/components/tooltips.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/4.1/components/tooltips.md b/docs/4.1/components/tooltips.md index 6e375feba..441aac420 100644 --- a/docs/4.1/components/tooltips.md +++ b/docs/4.1/components/tooltips.md @@ -88,9 +88,10 @@ $('#example').tooltip(options) {% capture callout %} ##### Usage with overflow `auto` and `scroll` -When the parent container has CSS property `overflow` set to values `auto|scroll` (for example when used within `.table-responsive`) the tooltip has weird flickering behaviour. -The solution is to set `boundary` option to anything other than default value `'scrollParent'`. Eg. set it to `'window'` +When the parent container has the CSS property `overflow` set to values `auto` or `scroll` (for example when used within `.table-responsive`) the tooltip has weird flickering behaviour. + +The solution is to set the `boundary` option to anything other than default value `'scrollParent'`. For example, set it to `'window'`: {% highlight js %} $('#example').tooltip({ boundary: 'window' }) |
