I have to two list side by side. In one list I want to have some space between two li (an empty li).
For example I want somthing like this
A B
A B
A
A B
I just put an empty li and it works.
But I want to remove the bullet so in the css I add list-style-type: none; but this remove the space and I get something like this :
A B
A B
A B
A
How can I do?
or a dirty method using an empty spacer (not recommended)