I'm trying to convert from excel spreadsheet (.xls) to html via MS Excel 2010, but I'm wanting to keep the gridlines. So I'm highlighting all cells -> format cells -> outline and inside border presets, normal border, black color, and then doing the export. Viewed with IE and Firefox, the borders are there. However, when viewed with chrome, the borders are gone and I instead see style="border-left: none;" inside of each td tag.
The purpose of this is to make an excel spreadsheet preview for a webpage, and it's looking like the export-to-html route is probably the easiest. Does anyone know of a better route?
I'm thinking my only solution may be to just have javascript check specifically for chrome and edit the border left/right/top/bottom styles on all the td tags. Is there something I'm missing?
Also, is there a way to keep the row numbers and column letter headers in the html version?