日期:2014-05-17  浏览次数:20762 次

html背景图片居中显示
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<!--背景图片居中的css样式 -->
<Style TYPE="text/css">
body{background-image: URL(bgimg2.jpg);
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;}
</style>
</head>
<!--attachment背景图是否随着内容滚动,fixed固定;background-repeat图片是否重复,no-repeat不重复 -->
<body>

</body>
</html>
背景图片居中显示