I have a table TD and on the right of it I want to add a 1 pixel border, so I\'ve done this:
table td { border-right:1px solid #000; }
This will add a centered border to the left of the cell that is 80% the height of the cell. You can reference the full border-image documentation here.
table td { border-image: linear-gradient(transparent 10%, blue 10% 90%, transparent 90%) 0 0 0 1 / 3px; }