我想知道如何将html内容导出到ms字。
这是我的代码。
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");
echo "<html>";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">";
echo "<body>";
echo "<b>My first document</b>";
echo "</body>";
echo "</html>";
成功导出msword文件,但我怎样才能使用像border-radius这样的css代码?
我使用了style ='border-radius:50%',但它无效。
Anyhelp会很感激。
我想知道如何处理该doc文件的样式工作。