I'm facing an issue with a table I created using the bootstrap stylesheet. For some reason, the cells are not wrapping correctly in Chrome, although they display perfectly fine in IE and Firefox. You can check it out here:
<form action="todos" method="post">
<table class="table" border="1"> // This is a standard table styled with bootstrap
<thead>
<tr>
<th>asdf</th>
<th>asdf<th>
...
</tr>
</thead>
<tbody>
<tr>
...
</tbody>
Does anyone have any insight on what might be causing this issue?