Hello,
Trying to make a top 10 reverse list. I am currently using this code:
<ol>
<li value="10">Item...Text
<li value="9">Item...Text
<li value="8">Item...Text
<li value="7">Item...Text
</ol>
and so on. The list seems to be working fine, however, I want to place a line break between each list item. At first I tried inserting a <br> between lists which worked but every time I would look at it in Visual text then revert back to html, it would remove the .
Then, I tried placing the list items in <p> but the same thing happened.
What would be the proper code to place in my post in order to get a reverse ordered list with line break?
Thank you