• 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>
    

      

  • 相关阅读:
    angular2 + bootstrap +jquery 实例
    How to create a angular2 project process
    icheck 插件
    select2 下面的搜索框 无法输入问题
    datatabels buttons
    datatables 跳转到指定页
    text-overflow:ellipse;
    box-shadow
    CSS强制性换行
    mybatis与hibernate的不同
  • 原文地址:https://www.cnblogs.com/wsx123/p/15703612.html
Copyright © 2020-2023  润新知