I\'ve an unordered HTML list (ul). If the second word is too long the line wraps automatically but the overflowing text isn\'t indented. Any ideas how to solve
ul
Replace your indent with padding
padding-left: 2em; text-indent: -2em;
Should do the trick