在HTML表格中创建一个Tick符号

时间:2014-01-09 22:33:33

标签: html css

我想在我表格中每一行末尾的元素内输出一个刻度符号(就像美国英语中的复选标记一样)(这是在windows pc上运行IE 8和IE 10时显示的eamil)

我尝试了几种不同的方法,但没有运气。

这是我的HTML:

<td align="centre" style="font-family: wingdings; font-size:150%;font-weight:bold; font-color:green">&#10004;</TD>

我确实尝试了一些建议here on SO: 658044,但没有成功

我做错了什么?

2 个答案:

答案 0 :(得分:1)

您使用的是unicode,不需要字体系列。另外,style属性是color,而不是font-color。

<td style="font-size:150%;font-weight:bold;color:green;">&#10004;</td>

答案 1 :(得分:1)

您可以使用以下代码之一:

<td align="center" style="text-align:center; font-size:150%; font-weight:bold; color:green;">&#10004;</td>

<td align="center" style="text-align:center; font-size:150%; font-weight:bold; color:green;">&#x2714</td>

虽然中心是正确的。您可以根据需要删除 text-align:center; align =“center”之一。