这是我的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
不会这样做。你能看出我做错了吗?
编辑:转动顶部中心不起作用
答案 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;
}
答案 1 :(得分:1)