How can I add a symbol to a button's text without it showing as blank?
The symbol in question is an arrow, which you can find here.
<asp:button id="btnAdd" runat="server" class="next"/>
CSS:
.next
{
content = ❯
width:50px;
}
When I use Text='❯'
, it ends up displaying a '?' symbol instead.