开发者

How to prevent table header from adding linefeed?

开发者 https://www.devze.com 2023-03-12 20:14 出处:网络
I have a table in which the tableheader contents are creating linefeed w开发者_如何学Gohen its long...

I have a table in which the tableheader contents are creating linefeed w开发者_如何学Gohen its long...

<th>Accounting Date Time (hh:mm): </th>

What happens is that after the word Date, the rest of the title is on the second line. pls advise. Thanks in advance


Use CSS.

th {
    white-space: nowrap;
}

Works in IE, Firefox, Chrome, Safari, and Opera.

0

精彩评论

暂无评论...
验证码 换一张
取 消