第九课--表格

Deadly 提交于 2019-11-25 19:14:59
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;
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表格</title>
    <link rel="stylesheet" href="demo.css">
</head>
<body>
<table>
   <tr>
       <th>序号</th>
   </tr>
    <tr>
        <td>1</td>
    </tr>
</table>
</body>
</html>
/*表格边框*/
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;
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!