I have a trouble with setting borders for table cells which have relative position style: fiddle example\[code\]table { border-collapse: collapse;}td { border: 1px solid green; position: relative;}\[/code\]It looks ok in FF and Chrome:
But in IE i see doubled cell borders:
This doubled borders appears only if td relative positioned.I know as workaround it is possible to remove border from table cell and put additional div with border inside of table cell.But maybe there is another way to solve this issue in IE?