css - html lists with specific characters? -


is there way style unordered list using greater symbol or symbol choose?

\> 1   \> 2   \> 3   ♦ 1   ♦ 2   ♦ 3   

without use of url()?

use li:before

<style> ul {    list-style: none;   } li:before { content: '> '} </style> <ul> <li>xyz</li> </ul> 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -