码迷,mamicode.com
首页 > Web开发 > 详细

day01_05(html表格介绍)

时间:2016-07-22 22:58:38      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

表格的基本构成:table,tr,td,表格是有行,列,单元格组成;
 
1:表格的基本属性
表头(th)
语法:<th>左边</th>
宽度(width)
高度(height)
表格的对齐方式:align
属性:center:居中;right:右对齐;left:左对齐
边框:border
边框颜色:bordercolor
内框宽度:cellspacing
表格内的文字与边框之间的距离:cellpadding
表格的背景:bgcolor
表格背景图像:background
语法:<table border="1px" width="1800px" height="50px" align="center" bordercolor="red" cellspacing="0px"
cellpadding="0px" bgcolor="#7fff00" background="img/1.jpg" >
 
2:表格的行属性
高度:width
边框颜色:bordercolor
行背景:bgcolor,background
行文字的水平对齐方式:align
行文字的垂直对齐方式:valign;   属性:top,middlle,bottom
 
3:单元格属性:
单元格的大小:width,height
水平跨度:colspan
垂直跨度:rowspan
对齐方式:align,valign;属性:top,middlle,bottom
背景颜色:bgcolor
单元格边框颜色:bordercolor
单元格亮边框颜色:bordercolorlight
单元格暗边框颜色:bordercolordark
单元格的背景图像:background
 
综合实例:
 
需求:
技术分享
 
<table width="1800px" border="1px" bordercolor="red" cellpadding="0px" cellspacing="0px" align="center">
    <tr>
        <td>
            <table border="1px" width="1800px" cellspacing="0px">
                <tr height="50px">
                    <td width="600px" align="left">
                        <img src="img/logo2.png" alt="logo"/>
                    </td>
                    <td width="600px" align="center">
                        <img src="img/header.png"/>
                    </td>
                    <td width="600px" align="center">
                        <a href="#"><font size="10">登录</font></a>
                        <a href="#"><font size="5">注册</font></a>
                        <a href="#"><font size="5">购物车</font></a>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    <tr height="50px" bgcolor="black">
        <td>
            <a href="#"><font size="8" color="white">首页</font></a>
            <a href="#"><font size="5" color="white">手机数码</font></a>
            <a href="#"><font size="5" color="white">电脑办公</font></a>
            <a href="#"><font size="5" color="white">家用电器</font></a>
        </td>
    </tr>
</table>

  

day01_05(html表格介绍)

标签:

原文地址:http://www.cnblogs.com/qlwang/p/5697237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!