How to prevent text in a table cell from wrapping - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:17:09Z http://stackoverflow.com/feeds/question/300220 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping 2 How to prevent text in a table cell from wrapping pkaeding 2008-11-18T21:39:28Z 2008-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>&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt; &lt;div&gt;Really long column heading&lt;/div&gt; &lt;/th&gt; &lt;th&gt; &lt;div&gt;Really long column heading&lt;/div&gt; &lt;/th&gt; &lt;th&gt; &lt;div&gt;Really long column heading&lt;/div&gt; &lt;/th&gt; &lt;th&gt; &lt;div&gt;Really long column heading&lt;/div&gt; &lt;/th&gt; &lt;th&gt; &lt;div&gt;Really long column heading&lt;/div&gt; &lt;/th&gt; &lt;th&gt; &lt;div&gt;Really long column heading&lt;/div&gt; &lt;/th&gt; &lt;th&gt; &lt;div&gt;Really long column heading&lt;/div&gt; &lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;data&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;data&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;data&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;data&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;data&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;data&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;data&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </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#300235 2 Answer by umnik700 for How to prevent text in a table cell from wrapping umnik700 2008-11-18T21:42:56Z 2008-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&amp;nbsp;long&amp;nbsp;column&amp;nbsp;heading</p> http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping/300237#300237 8 Answer by Owen for How to prevent text in a table cell from wrapping Owen 2008-11-18T21:43:06Z 2008-11-18T21:43:06Z <pre><code>th { white-space: nowrap; } </code></pre> <p>will force the contents of <code>&lt;th&gt;</code> to display on one line.</p> http://stackoverflow.com/questions/300220/how-to-prevent-text-in-a-table-cell-from-wrapping/300238#300238 6 Answer by Grant Wagner for How to prevent text in a table cell from wrapping Grant Wagner 2008-11-18T21:43:08Z 2008-11-18T21:43:08Z <pre><code>&lt;th nowrap="nowrap"&gt; </code></pre> <p>or</p> <pre><code>&lt;th style="white-space:nowrap;"&gt; </code></pre> <p>or</p> <pre><code>&lt;th class="nowrap"&gt; &lt;style type="text/css"&gt; .nowrap { white-space: nowrap; } &lt;/style&gt; </code></pre>