zoukankan      html  css  js  c++  java
  • html基础知识(table表格)

    <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title></title>
    <!-- 		table 表格写法 表单 tr 表格行 th 表头   td 表格单元 caption 表格标题
    		语义化标签:让标签更好记一些   
    		thead/tFood
    		tBody:在table中可以出现多次
    		给table表格增加 
    		border 表格边框
    		cellpadding 单元格内的空间
    		cellspacion 单元格之间的空间
    		rowspan 合并行
    		colspan 合并列
    		align :left左,center中,right右 左右对齐方式
    		valign :top 上,middle中,bottom下     上下对齐 -->
    	</head>
    	<body>
    		<table border="2" cellpadding="22" cellspacing="22"  valign="middle">
    			<caption>传输列表</caption>
    			<tr valign="middle">
    				<td rowspan="2">正在上传   </td>
    				<td colspan="200">正在下载   </td>
    				<td rowspan="2">传输列表   </td>
    			</tr>
    			<tr align="left">
    				<th>文件名称   </th>
    				<th>文件大小   </th>
    				<th>下载状态   </th>
    				<th>下载进度   </th>
    				<th>操作</th>
    			</tr>
    		</table>
    	</body>
    </html>
    

      

  • 相关阅读:
    第一次热身赛和正式比赛感想
    简明解释算法中的大O符号
    poj 3045
    poj 3104
    poj 3273
    poj 3258
    poj 2456
    二分法小结
    Poj 2718 Smallest Difference
    GCJ——Crazy Rows (2009 Round 2 A)
  • 原文地址:https://www.cnblogs.com/wsx123/p/15703612.html
Copyright © 2011-2022 走看看