How to add border radius on table row

前端 未结 11 1847
南方客
南方客 2020-12-02 06:14

Does anyone know how to style tr as we like?

I\'ve used border-collapse on table, after that tr\'s can display 1px solid border I give them.

However, when I\

11条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-02 06:58

    I found that adding border-radius to tables, trs, and tds does not seem to work 100% in the latest versions of Chrome, FF, and IE. What I do instead is, I wrap the table with a div and put the border-radius on it.

    Content
    .tableWrapper { border-radius: 4px; overflow: hidden; }

    If your table is not width: 100%, you can make your wrapper float: left, just remember to clear it.

    提交回复
    热议问题