html - 如何在 HTML 中像表格一样编码漩涡?

标签 html

看这个:

 _____ __
|_____|  |
|  |__|__|
|__|_____|

如何用 HTML 编码?

最佳答案

<table border="1">
  <tr>
    <td colspan="2">&nbsp;</td>
    <td rowspan="2">&nbsp;</td>
  </tr>
  <tr>
    <td rowspan="2">&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td colspan="2">&nbsp;</td>
  </tr>
</table>

关于html - 如何在 HTML 中像表格一样编码漩涡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4817451/

相关文章:

jquery - 如何使 Jquery Mobile 网格映射到不同的屏幕

html - 视频中的颜色变化 - HTML5

html - 去掉 Wrapper 中的空格

javascript - document.load 中是否应用了所有 CSS?

javascript - 如何验证长度并匹配所需的字符?

jquery - 使用 jquery 在 <img> 下面的 <html> 标签中显示 <img> 标题属性

javascript - 颜色下拉列表及其在动态下拉列表中的颜色

html - Flexbox之后受margin影响

html - 在侧边菜单旁边显示主要内容

javascript - 如何让我的 ionic 侧面菜单按钮工作?