宽高、背景颜色都可以,为什么left、top就不起作用了哪
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
.test{
width:300px;
height:300px;
background:blue;
pisition:relative;
left:500px;
top:500px;
}
</style>
</head>
<body>
<div class="test"></div>
</body>
</html>
你把position写错了