html插入图片背景

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>个人资料</title>
<style>
body {
/* 加载背景图 */
background-image: url("D:\\PHP\\实验一\\-1c200609dff5b573.jpg");
/* 背景图垂直、水平均居中 */
background-position: center center;
/* 背景图不平铺 */
background-repeat: no-repeat;
/* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-attachment: fixed;
/* 让背景图基于容器大小伸缩 */
background-size: cover;
/* 设置背景颜色,背景图加载过程中会显示背景色 */
background-color: #464646;
}
</style>
</head>
<table >
<tr>
<td colspan="2" align="center" ><h2>自我介绍</h2> </td>
</tr>
<tr>
<td width="97">姓名:</td>
<td width="391" >王雨琪</td>
</tr>
<tr>
<td>年龄:</td>
<td >20</td>
</tr>

<tr>
<td>班级:</td>
<td >信2005-1</td>
</tr>
<tr>
<td height="32">专业:</td>
<td class="">软件工程</td>
</tr>
<tr >
<td colspan="2" >
自我评价 :无!!!!!
</td>
</tr>
</table>

</body>
</html>

posted @ 2022-03-17 22:55  救救孩子吧/  阅读(264)  评论(0编辑  收藏  举报