I am trying to hide a list item by using the following code (for example)
<ol>
<li>Coffee</li>
<li style="visibility:hidden">Milk</li>
<li>tea</li>
</ol>
But unfornately, it renders as follows with an empty row:
1. Coffee
3. Tea
What I want is simply like this:
1. Coffee
2. Tea
I am asking if there is a neat way to fix this? Thanks.
<!-- <li>Milk</li> -->is out of the question? – Kaivosukeltaja Apr 6 '11 at 19:02li? – David Thomas Apr 6 '11 at 19:08