HTML/CSS基础教程 二

2020-12-13 05:29

阅读:259

标签:style   class   blog   c   code   java   

表是十分有用的,用它存储表状的数据更易于阅读.当你想用行列来显示信息时---你猜到了,

标签正是你需要的,有许多和表有关的标签,它们都以
开始.
表就是将一组数据用行列的形式排列,我们用
标签创建一个表行(table row),写入表头的内如,每个条目用

.我们为上表添加和,如下:
soscw.com,搜素材
DOCTYPE html>
html>
    head>
        title>Table Timetitle>
    head>
    
    body>
        
        table border="1px">
            thead>
                tr>
                    th>BATth>
                    th>CEOth>
                >
            thead>
            tbody>
                tr>
                    td>baidutd>
                    td>李彦宏td>     
                tr>
                
                tr>
                    td>alibabatd>
                    td>马云td>
                tr>
                
                tr>
                    td>tencenttd>
                    td>马化腾td>
                tr>
            tbody>
        table>
        
    body>

html>
soscw.com,搜素材

修改后:

标签表示表数据(table date)
soscw.com,搜素材
DOCTYPE html>

html>
    head>
        title>Table Timetitle>
    head>
    
    body>
        
        table border="1px">
            tr>
                td>Onetd>
            tr>
                
            tr>
                td>Twotd>
            tr>
            
            tr>
                td>Threetd>
            tr>
        table>
        
    body>

html>
soscw.com,搜素材

上面这段代码产生如下表格:

one
twe
three
 
 
 
 

 

添加一列

上面创建了一个单列的表,如何添加一列呢?很简单,只要在每行添加一个数据元就可以了,例如下面的代码:

soscw.com,搜素材
DOCTYPE html>
html>
    head>
        title>Table Timetitle>
    head>
    
    body>
        
        table border="1px">
            tr>
                td>baidutd>
                td>李彦宏td>     
            tr>
            
            tr>
                td>alibabatd>
                td>马云td>
            tr>
            
            tr>
                td>tencenttd>
                td>马化腾td>
            tr>
        table>
        
    body>

html>
soscw.com,搜素材

产生如下表格:

baidu 李彦宏
alibaba 马云
tencent 马化腾

 

 

 

 

 

表头

我们应该在

标签包裹,而将表的实际内容放入
BAT ceo
baidu 李彦宏
alibaba 马云
tencent 马化腾

 

 

 

 

 

 表的名字

我们的表没有标题,我们想在表的最上方加一个标题行,怎么做?

我们将使用

colspan属性,它默认占一列,我们可以指定它占的列数,像这样:
soscw.com,搜素材
th colspan="3">
soscw.com,搜素材

我们在上表中的标签下加下面的代码即可产生一个标题:

soscw.com,搜素材
tr>
      th colspan="2">BAT and its CEOth>
tr>
soscw.com,搜素材

colspan=2表示占用俩列,这样我们就可以在表的上面产生这样一个标题:

    BAT and its CEO

 


PS:我们可以自由修改表元素的style属性

HTML/CSS基础教程 二,搜素材,soscw.com

HTML/CSS基础教程 二

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/ezhengnan/p/3736031.html

上一篇:如何安装Windows7操作系统

下一篇:Java架构师成长之道之计算机组成原理概述篇


评论


亲,登录后才可以留言!

热门文章

推荐文章

最新文章

置顶文章