I\'m trying to hide some text inside an element using CSS by setting text-indent: -999px;. For some reason this doesn\'t work when I set
text-indent: -999px;
Along with text-indent: -9999px try using display: block;. It solved for me.
text-indent: -9999px
display: block;
Additionally, if you need the li elements to float horizontally (e.g. a horizontal menu), use float: left;.
float: left;