Scrollable Table using semantic ui

Hey does anyone have good links for scrolling vertically in a table?
I’m using semantic ui in a react app.

I found this but I just want regular scrolling:
https://semantic-ui.com/behaviors/visibility.html#/examples

I tried “overflow-x” but my linter doesn’t like it in jsx…?

#example {
  max-height: 100px;
  overflow-x: scroll;
}

https://jsfiddle.net/q0hc2akf/

1 Like