Prevent tab captions from being cut off

This is for:

Developer
In this article

In a search page, if the coveo-tab-section div is inside or below the coveo-result-column div, the rightmost tab caption may be cut off when the end user resizes the window.

Coveo search page with multiple tab captions the rightmost tab truncated after window resize

If you’re facing this issue, set the position CSS property to relative for the .coveo-results-column selector to restore proper tab behavior (see Styling the Coveo JavaScript Search Framework).

.coveo-results-column {
  position: relative;
}

This CSS yields the following behavior:

jsui-disappearing-tab