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
Post a Comment