Is there a way to hide the bullet-point of <ul>...</ul>
if there is only one item?
Example, here I want to have bullet-points:
<ul><li>foo</li><li>bar</li></ul>
* foo
* bar
Here, I don't want a bullet-point:
<ul><li>foo</li></ul>
foo
Is there a pure css solution?