请教关于position的一个问题
为什么position用absolute,div样式不能在中间,用relative就可以
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery动画特效</title>
</head>
<style type="text/css">
div{
position:absolute;(relative)
border:1px solid red;
margin:0 auto;
width:80px;
height:20px;
}
</style>
<body>
<input type="button" value="左移" id="bt1">
<input type="button" value="右移" id="bt2">
<div></div>
</body>
</html>