<div id="child">高度无效,求解释
<!DOCTYPE html>
<html>
<head>
<title>居中</title>
<style>
#parent{
position:relative;
}
#child{
width:200px;
height:200px;
position:absolute;
top:50%;
height:50%;
margin-top: -100px;
margin-left: -100px;
border:1px solid;
}
</style>
</head>
<body>
<div id="parent">
<div id="child">
</div>
</div>
</body>
</html>
我看代码里有一个height:200px,后面为什么又有个height:50% ?