I have a list of items that I am displaying in a floated list, with each item in the list at a fixed width so that there's two per row. What is the best practice to prevent this horrible thing from happening:

Possibilites:
- Trim to a specified number of characters before displaying the data. Requires guesswork on how many characters will be "safe".
- Overflow: hidden. Hacky.
- Remove the background and just have a top border on each item.
Possible but silly:
- Have a scrollbar in each item by doing overflow: auto, this will look horrendous.
- Add a background image to the container. It's not guaranteed that there's always an equal number of items so this option is out.
Any help on this irritating issue appreciated!