Open GoogleCodeExporter opened 9 years ago
I'm having similar issues with borders. In the spreadsheet I'm trying to
convert left and right borders are not always displayed.
Original comment by rholli...@gmail.com
on 17 Aug 2011 at 4:54
This happens because of the empty cells their style:
table.excel tbody td {
padding: 0 3px;
border: 1px solid #EEEEEE;
}
you could change it to:
table.excel tbody td {
padding: 0 3px;
border-left:1px solid #EEEEEE;
border-top:1px solid #EEEEEE;
}
for me that fixed it. Please let me know if that fixes your problem 2-3 years
after lol.
Original comment by Tho...@gmail.com
on 13 May 2013 at 8:49
Original issue reported on code.google.com by
andes...@gmail.com
on 24 May 2010 at 4:22