首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

html背景图片正中显示

2012-11-22 
html背景图片居中显示!DOCTYPE htmlhtmlheadmeta http-equivContent-Type contenttext/html

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>
背景图片居中显示

热点排行