I need to display two lists side by side. In one list, I want to insert some space between two li
elements (an empty li
).
For example, I am aiming for something that looks like this:
A B
A B
A
A B
I tried adding an empty li
, which worked. However, upon removing the bullet points using list-style-type: none;
in the CSS, the extra space is also removed and I end up with this:
A B
A B
A B
A
How can I achieve the desired outcome?