css - Icomoon show up weird after 9 fonts? -


i'm using icomoon site. shows correctly first 9 fonts.

here's code (css):

@font-face {     font-family: 'icomoon';     src:url('font/icomoon.eot');     src:url('font/icomoon.eot?#iefix') format('embedded-opentype'),         url('font/icomoon.woff') format('woff'),         url('font/icomoon.ttf') format('truetype'),         url('font/icomoon.svg#icomoon') format('svg');     font-weight: normal;     font-style: normal; } [data-icon]:before {      font-family: 'icomoon';     content: attr(data-icon);      speak: none; } 

here's code (html):

<span aria-hidden="true" data-icon="&#xe000;"></span> <span aria-hidden="true" data-icon="&#xe001;"></span> <span aria-hidden="true" data-icon="&#xe002;"></span> <span aria-hidden="true" data-icon="&#xe003;"></span> <span aria-hidden="true" data-icon="&#xe004;"></span> <span aria-hidden="true" data-icon="&#xe005;"></span> <span aria-hidden="true" data-icon="&#xe006;"></span> <span aria-hidden="true" data-icon="&#xe007;"></span> <span aria-hidden="true" data-icon="&#xe008;"></span> <span aria-hidden="true" data-icon="&#xe009;"></span> 

all code above works except these:

<span aria-hidden="true" data-icon="&#xe00a;"></span> <span aria-hidden="true" data-icon="&#xe00b;"></span> <span aria-hidden="true" data-icon="&#xe00c;"></span> <span aria-hidden="true" data-icon="&#xe00d;"></span> <span aria-hidden="true" data-icon="&#xe00e;"></span> 

i choose in pack icomoon, think because of last character prevent showing up. f.e: a, b, c, d , e.

it shows cube shape.

does know how solve these issue?

thanks!

it seems unique name each generated font required. there input field right of download button.

if name has been used before, download seems provide font got name earlier , not newly generated font.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -