Bootstrap has great horizontal definition list styling, but I want the DT content to wrap, not be truncated.
I know on their base.css page they say:
you can comment out white-space: nowrap; from .dl-horizontal dt block if you want to wrap content in all the dt
white-space: nowrap;
.dl-horizontal dt
if you want to wrap content for a single dt then add inline style='white-space: normal;' to that specific dt
style='white-space: normal;'