packages/react-examples/src/react/ComboBox/docs/ComboBoxBestPractices.md
ComboBox dropdowns render in their own layer by default to ensure they are not clipped by containers with overflow: hidden or overflow: scroll. This causes extra difficulty for people who use touch-based screen readers, so we recommend rendering the ComboBox options dropdown inline unless they are in overflow containers. To do so, set the following property on the ComboBox, as demonstrated in the ComboBox with inline dropdown example:
calloutProps={{ doNotLayer: true }}
By default, the ComboBox truncates option text instead of wrapping to a new line. Because this can lose meaningful information, it is recommended to adjust styles to wrap the option text.
The ComboBox with custom styling example demonstrates how to override truncation styles to support wrapping. The default style will continue to truncate to support existing implementations.