CSS table right margin in scrollable div

后端 未结 4 1211
隐瞒了意图╮
隐瞒了意图╮ 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:42

    you need to add padding-left in your table style

    replace your table css

     table{
     table-layout: fixed;
     background: red;
     margin-bottom: 20px; /* working */
     margin-right: 20px; /* not working */
     padding-left: 23px;
    }
    

    here jsfiffle demo : http://jsfiddle.net/sL8zxLbn/

提交回复
热议问题