Bullets
by shriek
HTML
<ul>
<li>Hi</li>
<li>There</li>
</ul>
CSS
ul li{
list-style-type: none;
}
ul li:before{
content:"\2022\A0";
}
by shriek
<ul>
<li>Hi</li>
<li>There</li>
</ul>
ul li{
list-style-type: none;
}
ul li:before{
content:"\2022\A0";
}