Java教程

表格的属性

本文主要是介绍表格的属性,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>表格的属性</title>
</head>
<body>
<table border="2" width="400px" height="60px" cellspacing="1" cellpadding="2"
align="center" bgcolor="pink" background="2-3.jpg" bordercolor="red">
    <caption>表格标题</caption>
      <tr>
        <th>学号</th>
        <th>姓名</th>
        <th>专业</th>
      </tr>
      <tr>
        <td>8888</td>
        <td>张三</td>
        <td>网络工程</td>
      </tr>
</table>

</body>
</html>

 

这篇关于表格的属性的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!