How to prevent text in a table cell from wrapping - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T11:17:09Zhttp://stackoverflow.com/feeds/question/300220http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping2How to prevent text in a table cell from wrappingpkaeding2008-11-18T21:39:28Z2008-11-18T21:43:38Z
<p>Does anyone know how I can prevent the text in a table cell from wrapping? This is for the header of a table, and the heading is a lot longer than the data under it, but I need it to display on only one line. It is okay if the column is very wide.</p>
<p>My (simplified) table is structured line this:</p>
<pre><code><table>
<thead>
<tr>
<th>
<div>Really long column heading</div>
</th>
<th>
<div>Really long column heading</div>
</th>
<th>
<div>Really long column heading</div>
</th>
<th>
<div>Really long column heading</div>
</th>
<th>
<div>Really long column heading</div>
</th>
<th>
<div>Really long column heading</div>
</th>
<th>
<div>Really long column heading</div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div>data</div>
</td>
<td>
<div>data</div>
</td>
<td>
<div>data</div>
</td>
<td>
<div>data</div>
</td>
<td>
<div>data</div>
</td>
<td>
<div>data</div>
</td>
<td>
<div>data</div>
</td>
</tr>
</tbody>
</table>
</code></pre>
<p>The heading itself is wrapped in a div inside the <code>th</code> tag for reasons pertaining to the javascript on the page. </p>
<p>The table is coming out with the headings wrapping onto multiple lines. This seems to only happen when the table is sufficiently wide, as the browser is trying to avoid horizontal scrolling. In my case, though, I want horizontal scrolling.</p>
<p>Any ideas?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping/300235#3002352Answer by umnik700 for How to prevent text in a table cell from wrappingumnik7002008-11-18T21:42:56Z2008-11-18T21:42:56Z<p>There are at least two ways to do it:</p>
<ul>
<li>use nowrap attribute inside the "td" tag:</li>
</ul>
<p>nowrap="nowrap"</p>
<ul>
<li>Use non-breakable spaces between your words:</li>
</ul>
<p>Really&nbsp;long&nbsp;column&nbsp;heading</p>
http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping/300237#3002378Answer by Owen for How to prevent text in a table cell from wrappingOwen2008-11-18T21:43:06Z2008-11-18T21:43:06Z<pre><code>th {
white-space: nowrap;
}
</code></pre>
<p>will force the contents of <code><th></code> to display on one line.</p>
http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping/300238#3002386Answer by Grant Wagner for How to prevent text in a table cell from wrappingGrant Wagner2008-11-18T21:43:08Z2008-11-18T21:43:08Z<pre><code><th nowrap="nowrap">
</code></pre>
<p>or</p>
<pre><code><th style="white-space:nowrap;">
</code></pre>
<p>or</p>
<pre><code><th class="nowrap">
<style type="text/css">
.nowrap { white-space: nowrap; }
</style>
</code></pre>