0

基本上我使用的是 W3 网站上的“Tryit Editor”,这是我开始使用的代码

<!DOCTYPE html>
<html>
<head>
<style> 
body
{
background-image:url("img_tree.gif"),url("img_flwr.gif");
background-color:#cccccc;
}
</style>
</head>
<body>

</body>
</html>

我想更改背景颜色和背景图像,以便它们只能在 div 上找到,而不是在整个页面上。我还想在页面周围移动 div。我能够使用背景元素制作 div,但无法在页面上移动它。我使用了以下代码,认为

top:150px;
left: 150px;

会导致 div 改变位置

<!DOCTYPE html>
<html>
<head>
<style> 
div 
{
position=fixed;
top:150px;
left: 150px;
background-image:url("img_tree.gif"),url("img_flwr.gif");
background-color:#00dccc;
height: 200px;
width: 200px;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>

唉, div 没有改变位置。是什么赋予了?

谢谢!:]

4

2 回答 2

4

您的声明中有一个等号而不是冒号,position这导致页面忽略它。改变它,它会工作!

编辑:感谢修复我糟糕的术语 Pavlo,不敢相信我做到了:P

于 2013-09-04T08:54:21.523 回答
2

你的代码是错误的。它应该是

position: fixed;
于 2013-09-04T08:54:36.603 回答