I have a table that is being populated with different lengths of text. I have set the table-layout css property to fixed because it keeps pushing the table outside it's parent creating a horizontal scrollbar.
I want my td's to be exactly half of the table which will be full size of it's parent. I want my text to wrap inside the td's. Here is what it looks like:

I want the text to wrap around 20 so it doesn't overlap the other text. I can't use a <br />.
Here is a jsFiddle of the problem . Thanks.
Edit: Nick Beranek Answered this question but I'm looking for the reason this happens. When <p> tags are not in a table like this the words wrap by default without adding css. Could someone please explain to me why it doesn't work in this situation? Thanks again.