Chapter 13 建立表格

  • HTML
<table>
      <caption>/*------标题,多数情况默认显示在表格上方*/
        The cities I visited on my
        Segway'n USA travels
      </caption>
     
      <tr>/*------table row 新列*/
        <th>City</th>/*-------table head 表头*/
        <th>Date</th>
        <th>Temperature</th>
        <th>Altitude</th>
        <th>Population</th>
        <th>Diner Rating</th>
      </tr>
      
      <tr>
        <td>Walla Walla, WA</td>/*------table data 数据单元格*/
        <td class="center">June 15th</td>
        <td class="center">75</td>
        <td class="right">1,204 ft</td>
        <td class="right">29,686</td>
        <td class="center">4/5</td>
      </tr>
      
      <tr>
        <td rowspan="2">Truth or Consequences, NM</td>/*------跨两行,跨多列用colspan*/
        <td class="center">August 9th</td>
        <td class="center">93</td>
        <td rowspan="2" class="right">4,242 ft</td>
        <td rowspan="2" class="right">7,289</td>
        <td class="center">5/5</td>
      </tr>
      
      <tr>
        /*------被上一行占据*/
        <td class="center">August 27th</td>
        <td class="center">98</td>
       /*------被上一行占据*/
       /*------被上一行占据*/
        <td class="center">
          <table>/*------嵌套表格*/
             <tr>
              <th>Tess</th>
              <td>5/5</td>
            </tr>
            <tr>
              <th>Tony</th>
              <td>4/5</td>
            </tr>
          </table>
        </td>
      </tr>
    </table>
  • CSS
table {
  margin-left:      20px;
  margin-right:     20px;
  border:           thin solid black;
  caption-side:     bottom;
  border-collapse:  collapse;/*------消除单元格间隙*/
}

table table th {
  background-color: white;
}

td, th {
  border:           thin dotted gray;
  padding:          5px;
}

th {
  background-color: #cc6600;
}

.cellcolor {
  background-color: #fcba7a;
}


caption {
  font-style:       italic;
  padding-top:      8px;
}

.center {
  text-align:       center;
}

.right {
  text-align:       right;
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 不言简书阅读 217评论 0 3
  • 2014毕业,从毕业到现在,整整四年了,这四年间,我仿佛经历了一场似桃花源记似的梦,其中的美好与痛苦,都在酸甜苦辣...
    静820阅读 109评论 0 0
  • 若丁山,最近这个名字太火了,虽然它不是大名鼎鼎的“诺丁山”。到达山顶那晚,我们围在一起烤火,我说回来一定要好好的写...
    土拨鼠爱流浪阅读 5,765评论 5 3
  • 春去冬来夏又至 依然未见 小溪的尽头 花开并蒂连理枝 十八年,年华似水东流 明月楼,楼高独倚人醉 你的名字 京华春...
    玉江蝶影阅读 168评论 0 0
  • 我昨天收拾衣柜,翻到了一件很高冷的衣服,上面写着:“人生苦短,及时行乐。”我曾经很喜欢这件衣服的。 虽然有人说它另...
    大苏少年_阅读 401评论 0 3

友情链接更多精彩内容