css - How to embed multiple glyphs -


i have following glyph (on glyph made out of few) generated icomoon

<glyph unicode="&#xe905;" d="m0 960h1024v-1024h-1024v1024z" /> <glyph unicode="&#xe906;" d="m0 896h320v-320h-320v320z" /> <glyph unicode="&#xe907;" d="m448 896h512v-128h-512v128z" /> <glyph unicode="&#xe908;" d="m448 704h512v-128h-512v128z" /> <glyph unicode="&#xe909;" d="m0 320h320v-320h-320v320z" /> <glyph unicode="&#xe90a;" d="m448 320h512v-128h-512v128z" /> <glyph unicode="&#xe90b;" d="m448 128h512v-128h-512v128z" />  

the problem i'd embed within css 'content' property 1 sign ex.:

.some-selector::before {    content: '\e900'   } 

but

.some-selector::before {    content: '\e905\e906\e907\e908\e909\e90a\e90b'   } 

won't work - idea on how embed way?

edit:

i want display layers - 1 on instead (one next other).


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -