Setting a max height on a table

前端 未结 9 1375
猫巷女王i
猫巷女王i 2020-12-29 01:10

I am trying to design a page where there are some tables. It seems that styling tables is much more painful than it ought to be.

The problem is the following: The ta

9条回答
  •  [愿得一人]
    2020-12-29 01:42

    Seems very similar to this question. From there it seems that this should do the trick:

    table {
      display: block; /* important */
      height: 600px;
      overflow-y: scroll;
    }
    

提交回复
热议问题