您的位置:首页 > Web前端 > CSS

精通 CSS+DIV 网页样式与布局 63

2016-12-06 10:44 435 查看
人生如梦<br>一尊还酹江月<br>

</div>

</body>

</html>

<html>

<head>

<title>年度收入</title>

<style>

<!–

body{

background-color:#ebf5ff; /* 页面背景色 */

margin:0px; padding:4px;

text-align:center; /* 居中对齐(IE 有效) */

}

.datalist{

color:#0046a6; /* 表格文字颜色 */

background-color:#d2e8ff; /* 表格背景色 */

font-family:Arial; /* 表格字体 */

}

.datalist caption{

font-size:18px; /* 标题文字大小 */

font-weight:bold; /* 标题文字粗体 */

}

.datalist th{

color:#003e7e; /* 行、列名称颜色 */

background-color:#7bb3ff; /* 行、列名称的背景色 */

}

–>

</style>

</head>

<body>

<table summary=”This table shows the yearly income for years 2004 through 2007”

border=”1” class=”datalist”>

<caption>年度收入 2004 - 2007</caption>

<tr>

<th></th>

<th scope=”col”>2004</th>

<th scope=”col”>2005</th>

<th scope=”col”>2006</th>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css ie