html背景图片居中显示

<!DOCTYPEhtml>

<html>

<head>

<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>

<title>无标题文档</title>

<!--背景图片居中的css样式-->

<StyleTYPE="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>

背景图片居中显示

相关推荐