根据使用的标记,字体在粘贴到MS Word时更改为Times New Roman

时间:2015-06-12 20:54:38

标签: html css twitter-bootstrap fonts ms-word

让我们考虑使用Bootstrap的<div> <div> <table class="table"> <tbody> <tr> <th>Some row</th> <td>Some value</td> </tr> </tbody> </table> </div> <div> <table class="table"> <tbody> <tr> <th>Some row</th> <td>Some value</td> </tr> </tbody> </table> </div> </div>

这个简单的表格标记
     i = 1;
     z = zeros(1, 10);
        for i=1:400
    j = num2str(i);
    file_name = strcat('part',j,'txt');
    file_id = fopen(file_name);
    part = fread(file_id, inf, 'uchar');
    h = hist(part,10);
    z = z + h;
    fclose(file_id);
end

请见documentation

当您选择两个表格并将其粘贴到MS Word中时,文本的字体为 Times New Roman

Times new roman font

但是,当我删除包装表格div(请参阅Bootply)时,选择它们并将粘贴复制到MS Word,它将粘贴为 Helvetica

Helvetica font

为什么呢?我没有看到它的CSS样式有任何差异。

0 个答案:

没有答案