MicroDroid/vue-materialize-datatable

Spacing between table cells on IE11

Closed this issue · 3 comments

border-radius of materialize.css leads to small visible spaces between table cells on IE11:
capture

Possible fix:

table td, table th {
    border-radius: 0;
}

I do not have any device that has Windows so that I am able to reproduce or fix that. If that seems like a proper fix please pull-request that.

But just looking at the screenshot I think border: none would work better? I mean, there seems to be a visible 1-pixel vertical line in the dark grey area in the screenshot, which is possibly a border.

border: none removes the whole border and therfore the table isn't stripped anymore. The 1-pixel vertical line is also gone if you set border-radius to 0

Fixed as in #6