当前位置: 代码迷 >> HTML/CSS >> html背景图片正中显示
  详细解决方案

html背景图片正中显示

热度:335   发布时间:2012-11-22 00:16:41.0
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>
背景图片居中显示
  相关解决方案