I've got a table cell that I would always like to be a particular width. However, it doesn't work with large strings of unspaced text. Here's a test case:
<html><body>
  <table><tbody><tr>
   <td style="border: solid green 1px; width:200px; overflow:hidden;">
    This_is_a_terrible_example_of_thinking_outside_the_box.
   </td>
  </tr></tbody></table>
</body></html>
How do I get the text to be cut off at the edge of the box, rather than having the box expanded?