Reputation: 129
I have table cells where I've set various images as the border with no margin around the cell. Is there a way to then put a coloured border inside the images, pushing the border into the cell rather than right at the edges?
Upvotes: 3
Views: 6869
Reputation: 81
If you can use CSS3, just look towards outline
property.
This example makes 2px blue border inside table cell.
CSS:
td.bordred {
outline: solid 2px #377bb5;
outline-offset: -2px;
}
Upvotes: 8