One solution could be to use pseudoelements on each item to simulate borders. The benefit to this approach is that you don’t need to add any extra HTML elements just for styling purposes.
However, the downside is that at some screen widths you might see the lines appear slightly thicker due to subpixel rendering.
2
Answers
solution using extra table rows on top and bottom with
.extend
cells and only showing theborder-right
on them:One solution could be to use pseudoelements on each item to simulate borders. The benefit to this approach is that you don’t need to add any extra HTML elements just for styling purposes.
However, the downside is that at some screen widths you might see the lines appear slightly thicker due to subpixel rendering.