<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>個人信息表</title>
<style type="text/css">
/* 全局表格樣式,DW8 完全兼容 */
table {
? ? border-collapse: collapse; /* 合并邊框,避免雙線 */
? ? width: 90%; /* 表格寬度,可自行調(diào)整 */
? ? margin: 20px auto; /* 居中顯示 */
? ? font-family: "宋體", Arial, sans-serif; /* 適配中文顯示 */
? ? font-size: 14px;
}
th, td {
? ? border: 1px solid #333333; /* 表格邊框 */
? ? padding: 8px 12px; /* 內(nèi)邊距,避免內(nèi)容貼邊 */
? ? text-align: left;
}
/* 表頭藍色背景樣式(和截圖一致) */
.table-header {
? ? background-color: #4169E1; /* 深藍色表頭 */
? ? color: #FFFFFF; /* 白色文字 */
? ? font-weight: bold;
}
/* 照片列樣式(跨5行,藍色背景) */
.photo-col {
? ? background-color: #4169E1;
? ? color: #FFFFFF;
? ? text-align: center;
? ? vertical-align: top; /* 內(nèi)容靠上 */
}
/* 學(xué)習(xí)經(jīng)歷標題行樣式 */
.experience-title {
? ? text-align: center;
? ? font-weight: bold;
}
</style>
</head>
<body>
<table width="800" border="1" cellpadding="0" cellspacing="0">
? <tr>
? ? <th width="120" class="table-header">姓名</th>
? ? <th width="200" class="table-header">出生年月</th>
? ? <th width="150" rowspan="5" class="photo-col">照片</th>
? </tr>
? <tr>
? ? <td>籍貫</td>
? ? <td>政治面貌</td>
? </tr>
? <tr>
? ? <td colspan="2">聯(lián)系電話</td>
? </tr>
? <tr>
? ? <td colspan="2">家庭地址</td>
? </tr>
? <tr>
? ? <td colspan="2" class="experience-title">學(xué)習(xí)經(jīng)歷</td>
? </tr>
? <tr>
? ? <td colspan="3">
? ? ? 1. <br />
? ? ? 2. <br />
? ? ? 3. <br />
? ? ? 4.
? ? </td>
? </tr>
</table>
</body>
</html>