简体   繁体   中英

How to export Excel spreadsheet to HTML table with INLINE CSS?

I'd like to know how to get the table in my spreadsheet into html format without all the microsoft specific code. Our webpage is hosted elsewhere which means I don't have access to the <head> part of our pages. We can only insert content into the <body> . I just want the table to retain the same fonts, borders and formatting with any and all CSS styling included directly in the table code not elsewhere.

EDIT:

It actually appears to work if I put the CSS classes in the <body> of my document. Is that legal? I thought those were supposed to be defined in the <head> ???

<body>
<style type="text/css">
table.mytable {
border: 1px solid #CCC; font-family: Verdana, Verdana, Geneva, sans-serif
font-size: 12px;
} 

EDIT:

I have found that copying in Excel and pasting into the Live View in Dreamweaver creates much cleaner html than saving as html in your spreadsheet. You are still left with a bajillion CSS classes that you have to edit out but it's at least it's a step closer.

If you get an error message whilst pasting a large table in Dream Weaver see this page .

FINAL EDIT:

Before you export your table to any html editor go through ALL of the cells in your table with the format painter. Using this tool make sure you paint the format of every similarly formatted cell. That way you won't get a million different CSS classes for cells that should have a particular format. It will make your life a hell of a lot easier particularly if your table is large and detailed.

It is not "illegal" to place the style codes on the body, but defenitly not web friendly

What usualy goes in the head is a pointer to a .css file

I recomend you convert your xls(x) file with dreamweaver and then edit the html result with Sublime Text Editor Available here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM