Im trying to use hex value for bullet in CSS as mentioned here Can you use HTML entities in the CSS “content” property?
Note that I don't want to use <li>
element just to show bullet
<table>
<tr>
<td>
<span class="mybullet"/> <a href="#">Link1</a>
</td>
</tr>
</table>
.mybullet
{
content:"\2022 ";
color:#f00;
}
however its not working. Here is the JsFiddle http://jsfiddle.net/kq2fzb2v/