I have a table of log entries that I want to display with two columns: the timestamp, and the log entry itself. The table has a fixed width. I want the timestamp column to stretch to fit the text of the timestamp itself and go no further, then let the rest of the table's width be taken up by the message. I want the timestamp text to always be one line and let the log message wrap around. I have that part working, but for the life of me I can't figure out how to make the column width fit the text width of the timestamp. I can do a fixed pixel width, but that seems iffy for this.
EDIT: Updated with code example: (http://jsfiddle.net/GH7jj/7/)
<div class="MainDiv">
<table class="LogTableStyle">
<tr>
<th>Time</th>
<th>Message</th>
</tr>
<tr>
<td class="LogTime">11/07/2012 07:38:14</td>
<td class="LogMessage">There was something that happened at this point. This is a pretty long message though. It should be wrapping around. I want the timestamp to be on that one line while giving this message as much room as possible. That'd be cool.</td>
</tr>
</table>
</div>
And the CSS:
.MainDiv {
min-width:300px;
max-width:500px;
height:100%;
background-color:#F0F0FF;
margin:auto;
}
.LogTableStyle {
width:97%;
margin:auto;
border-collapse:collapse;
table-layout:fixed;
}
.LogTableStyle th {
font-family:Verdana, Geneva, sans-serif;
font-size:14px;
background-color:#333;
color:#FFF;
border:solid 1px #000;
padding:3px;
border-left-style: none;
border-right-style: none;
}
.LogTableStyle td {
font-family:Verdana, Geneva, sans-serif;
font-size:11px;
}
.LogTime {
white-space:nowrap;
}
.LogMessage {
overflow:hidden;
text-overflow:ellipsis;
}
white-space: nowrapon the timestamp column and let the browser size the columns. – Kevin Boucher Nov 14 '12 at 21:34