Exploring UN-ordered lists in HTML has led me to wonder if it's possible for dynamically generated ul
tags to display like this:
* Hello
* Hi
* Bi
* Name
* Ron
* Mat
* Cloth
* Color
* Red
When I use the jquery append
function to add UL
elements to a DIV
, the result I get looks like this:
*Hello
*Hi
*Bi
*Name
*Ron
*Mat
*Cloth
*Color
*Red
Is there a CSS trick to align the stars to the left?