diff --git a/docs/docs/getting-started.mdx b/docs/docs/getting-started.mdx
index 7bcb7a69..de224d28 100644
--- a/docs/docs/getting-started.mdx
+++ b/docs/docs/getting-started.mdx
@@ -179,9 +179,11 @@ import { Tooltip } from 'react-tooltip'
Hello world!
-### Clickable tooltip
+### Clickable tooltip/accessibility
-By default, you can't interact with elements inside the tooltip. To allow for proper usage of elements such as buttons and inputs, use the `clickable` prop.
+By default the tooltip disappears when the pointer leaves the tooltip anchor element - which means you can't interact with elements inside the tooltip and that it won't meet the 'hoverable' requirement of [WCAG Success Criterion 1.4.13 Content on Hover or Focus](https://www.w3.org/TR/WCAG22/#content-on-hover-or-focus).
+
+To allow for proper usage of elements such as buttons and inputs - or to ensure the pointer can be moved over the tooltip content without it disappearing - use the `clickable` prop.
```jsx
◕‿‿◕