基本上我使用的是 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 没有改变位置。是什么赋予了?
谢谢!:]