<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <h1>Add Nowrap to th</h1> <table> <tr> <th>Month</th> <th style="white-space:nowrap">My Savings for a new car (Hopefully I will get one in the future)</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <p>Table without nowrap:</p> <table> <tr> <th>Month</th> <th>My Savings for a new car (Hopefully I will get one in the future)</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <p><b>Note:</b> You might have to reduce the browser window to see the effect.</p> </body> </html>