【问题标题】:How to control table size entirely through html and CSS?如何完全通过 html 和 CSS 控制表格大小?
【发布时间】:2022-01-20 00:48:55
【问题描述】:

我是 Web 开发的新手,我被困在一个任务中,我必须在表单中制作一个表格,但是,我在将 3 个文本框彼此相邻放置时遇到了困难,其中包含“国家代码、城市代码和电话号码”在同一部分中。 我用于表格以及每个输入和标签。

你的手机
国家代码 - 城市代码 - 电话号码

【问题讨论】:

    标签: html css forms visual-studio visual-web-developer


    【解决方案1】:

    你可以在表格中使用 colspan 或 rowspan

    示例:

    <table>
     <tr>
       <th colspan="3">Your Phone</th>
     </tr>
     <tr>
       <td>Country code</td>
       <td>City code</td>
       <td>Phone number</td>
     </tr>
    </table>
    

    w3school查看更多信息

    【讨论】:

      猜你喜欢
      • 2012-08-19
      • 2011-09-16
      • 1970-01-01
      • 2013-03-05
      • 2014-08-16
      • 1970-01-01
      • 1970-01-01
      • 2010-09-18
      • 2013-01-06
      相关资源
      最近更新 更多