我想在我的表中隐藏一些信息,就像用
<input type="password" placeholder="password">
但在我的一张桌子上。
是否可以像
<td>
中那样简单? 最佳答案
试试这个,效果很好:
.hidetext { -webkit-text-security: disc; /* Default */ }
<table>
<tr>
<td class="hidetext">text to hide</td>
</tr>
</table>
您也可以使用以下选项之一:
.hidetext { -webkit-text-security: none; }
.hidetext { -webkit-text-security: circle; }
.hidetext { -webkit-text-security: square; }