armandgrillet / Mado

A beautiful Markdown editor designed for Google Chrome.
https://chrome.google.com/webstore/detail/mado/gmmlaihnodfojphcmjeemhaeajaldcdj
MIT License
64 stars 16 forks source link

Fix the line height bug created by empty list items #76

Closed TheophileBarbin closed 10 years ago

TheophileBarbin commented 10 years ago

When a list item is empty, it is currently not displayed as a real line: the :before is here, but the list item has no line height, so it is superposed on the next line.

Try:

li:empty { height: 1em; }

or something like it.