CSS table right margin in scrollable div

后端 未结 4 1236
隐瞒了意图╮
隐瞒了意图╮ 2021-01-20 04:08

I have div with \"overflow: scroll\" and fixed-size table inside.
I need to add empty space below and on the right of the table.
I\'m using following code, however i

4条回答
  •  無奈伤痛
    2021-01-20 04:25

    Remove the width attribute for the div. Everything will work fine as expected.

    div{
        display: inline-block;
        height: 100px;
        background: blue;
        overflow: scroll;
      }
    

提交回复
热议问题