Lera
Lera

Reputation: 129

css moving a border inside a table cell

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

Answers (2)

Serge Troitskiy
Serge Troitskiy

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

jamesplease
jamesplease

Reputation: 12879

Have you tried playing with border-style: inset;?

Upvotes: 0

Related Questions