您当前的位置: 首页 > 

壹小俊

暂无认证

  • 2浏览

    0关注

    885博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

第九课--表格

壹小俊 发布时间:2019-08-07 09:39:40 ,浏览量:2

a.表格边框
table,th,td{
    border:  1px black solid;
}
b.折叠边框(边款细线)
table,th,td{
    border:  1px black solid;
}
table
{
    border-collapse:collapse;
}
c.表格宽度和高度
/*表格宽度和高度*/
table
{
    width:100%;
}
th
{
    height:50px;
}
d.表格文字对齐
td
{
    text-align:right;
}
td
{
    height:50px;
    vertical-align:bottom;
}
e.表格填充
td
{
    padding:15px;
}
f.表格颜色
table, td, th
{
    border:1px solid green;
}
th
{
    background-color:green;
    color:white;
}



    
    表格
    



   
       序号
   
    
        1
    


/*表格边框*/
table,th,td{
    border:  1px black solid;
}
/*折叠边框(边款细线)*/
table
{
    border-collapse:collapse;
}
/*表格宽度和高度*/
table
{
    width:100%;
}
th
{
    height:50px;
}
/*表格文字对齐*/

/*td*/
/*{*/
    /*text-align:right;*/
/*}*/
td
{
    height:50px;
    vertical-align:bottom;
}
/*表格填充*/
td
{
    padding:15px;
}
/*表格颜色*/
table, td, th
{
    border:1px solid green;
}
th
{
    background-color:green;
    color:white;
}

 

关注
打赏
1664335782
查看更多评论
立即登录/注册

微信扫码登录

0.0381s