我想在我表格中每一行末尾的元素内输出一个刻度符号(就像美国英语中的复选标记一样)(这是在windows pc上运行IE 8和IE 10时显示的eamil)
我尝试了几种不同的方法,但没有运气。
这是我的HTML:
<td align="centre" style="font-family: wingdings; font-size:150%;font-weight:bold; font-color:green">✔</TD>
我确实尝试了一些建议here on SO: 658044,但没有成功
我做错了什么?
答案 0 :(得分:1)
您使用的是unicode,不需要字体系列。另外,style属性是color,而不是font-color。
<td style="font-size:150%;font-weight:bold;color:green;">✔</td>
答案 1 :(得分:1)
您可以使用以下代码之一:
<td align="center" style="text-align:center; font-size:150%; font-weight:bold; color:green;">✔</td>
或
<td align="center" style="text-align:center; font-size:150%; font-weight:bold; color:green;">✔</td>
虽然中心是正确的。您可以根据需要删除 text-align:center; 或 align =“center”之一。