You can check the problem here: http://jsfiddle.net/gkJAd/4/
I have an unordered list in where every li will have a max-height of 2.25em (I want it to be at most 2 lines). The list-type should show normally, on the outside, aligned on the first line. I tried a few things all with its on issues:
- If I add the hidden, height, etc, codes to the li instead of the a, the disc disappears;
- If I change the a to be
display: blockinstead ofdisplay: inline-block, it shows correctly on Firefox but wrongly everywhere else; - If I change the a to be
display: inlineit puts the disc at the right place, but, since it is not longer a block, the height is ignored. Anyone got an solution?
Sol