⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tryit_view.asp@filename=tryhtml_table_nbsp

📁 W3Schools tutorial..web designing
💻 ASP@FILENAME=TRYHTML_TABLE_NBSP
字号:
<html>
<body>

<table border="1">
<tr>
  <td>Some text</td>
  <td>Some text</td>
</tr>
<tr>
  <td></td>
  <td>Some text</td>
</tr>
</table>

<p>
As you can see, one of the cells has no border. That is because it is empty. Try to insert a space in the cell. Still it has no border.
</p>

<p>
The trick is to insert a no-breaking space in the cell.
</p>

<p>No-breaking space is a character entity. If you don't know what a character entity is, read the chapter about it.
</p>

<p>The no-breaking space entity starts with an ampersand (&quot;&amp;&quot;),
then the letters &quot;nbsp&quot;, and ends with a semicolon (&quot;;&quot;)
</p>

<p>&nbsp;
</p>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -