CSS背景位置不适用于我的班级

时间:2011-05-22 11:37:17

标签: html css background-image background-position

这是我的CSS:

.header
{
    background-image:url(Images/head.png);
    background-position: center top;
    background-repeat:no-repeat;
    width:1010px;
    height:269px;
}

这是我的HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>xSky Software - Most likely the only software on Clickbank that exists.</title>
<link href="style.css" rel="stylesheet" type="text/css" /> 
</head>
<body>

<div class="header"></div>
</div>
</body>
</html>

我试图让我的图像以X轴为中心,并在Y轴上方。但是我的CSS类.header不会这样做。你能看出我做错了吗?

编辑:转动顶部中心不起作用

2 个答案:

答案 0 :(得分:2)

您的background-position值是错误的。它应该是:

background-position: 50% 0; /* Short values FTW! */

不要忘记,如果你希望它保持居中,你还需要做一些事情,比如将内容包装在容器中并使用margin:0 auto来保持所有内容。

<强> HTML:

<div class="wrap">
    <div class="header"></div>
</div>

<强> CSS:

.wrap {
    width:1010px;
    margin:0 auto;
}
.header {
    width:1010px;
    height:265px;
    background:transparent url('//placehold.it/1010x265') no-repeat;
}

演示:jsfiddle.net/UGDxU/show (或edit it

答案 1 :(得分:1)

background-position的顺序为left top。尝试翻转值。

您还需要background-repeat: no-repeat

jsFiddle