Re: [csswg-drafts] [css-tables] Setting order of rendering borders with border-collapse: collapse

I don't think it's worth adding a new property which only works for collapsed tables. You can use outlines instead of borders:

```css
table {
  border-spacing: 3px;
}
th, td {
  outline: 3px solid #ccc;
}
.highlighted-cell {
  outline-color: #f30;
  position: relative;
}
```

https://jsfiddle.net/vpkst1rf/1/

-- 
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1870#issuecomment-336713510 using your GitHub account

Received on Sunday, 15 October 2017 14:00:41 UTC