Rehmat Sayany
Rehmat Sayany

Reputation: 61

How to make overflow scroll to table data

Here is my Website link : http://rehmat.singlehtml.com Image

When i put "overflow:scoll" css to make scroll but when i did it makes my table td so small. I want full width of my td and scroll too. Any one ?

Here is the css of scroll

 tbody{
    max-height: 100px;
    overflow-y: scroll;
    display: block;
   }

Upvotes: 0

Views: 25

Answers (1)

Kamalesh M. Talaviya
Kamalesh M. Talaviya

Reputation: 1420

set display grid to tr

tr{
          display: grid;
    }

Upvotes: 1

Related Questions