Ricardo Rodrigues
Ricardo Rodrigues

Reputation: 2703

Table border not aligned top or bottom

Have the following problem example .

The problem is that because of the border in the right td , a white line appears in top and the bottom.

I would like to have:

Thanks

UPDATE :

This is the same example2 but just increase the border from the TD , you can see that green doesn't go to the top and the bottom left border is not align with the right bottom.

Upvotes: 0

Views: 3203

Answers (2)

tuze
tuze

Reputation: 1978

border-collapse property causing to this.

Table style

table{border-collapse:seperate}

example: http://jsfiddle.net/TTw97/10/

Upvotes: 1

You are missing style="border: 2px solid black" from some of your elements.

Upvotes: 0

Related Questions