HTML <th> nowrap屬性用於指定不應包裝標頭單元格內的內容。它包含布爾值。 HTML 5不支持它。
用法:
<th nowrap>
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML th nowrap Attribute
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML th nowrap Attribute</h2>
<table border="1">
<tr>
<th>NAME</th>
<th nowrap>
GeeksforGeeks is a computer science portal
</th>
</tr>
<tr>
<td>BITTU</td>
<td>CSE</td>
</tr>
<tr>
<td>RAKESH</td>
<td>EC</td>
</tr>
</table>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML <th> nowrap屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Safari
- Opera
相關用法
- HTML <td> nowrap屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 HTML | <th> nowrap Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。