0

enter image description here

.iati-list-table {
    overflow-x: auto;
    overflow-y: visible;
}

The scroll bar appears when I use overflow-visible and when i use overflowy-hidden the tooptip is croped.

how do I make in such a way that overflow x is auto and overflow y is normal(no scroll bar and tooltips are not cropped )

Salil Rajkarnikar
  • 588
  • 1
  • 7
  • 26

1 Answers1

-1

I think you need to read this and figure it out.

It will help you out:-CSS overflow-x: visible; and overflow-y: hidden; causing scrollbar issue

If you are using visible for either overflow-x or overflow-y and something other than visible for the other, the visible value is interpreted as auto.

YOGENDRA SINGH
  • 118
  • 1
  • 1
  • 18