为什么我这父元素和子元素单独在两行
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>aa</title>
<style>
*{padding: 0;
margin: 0;}
.per{
width: 300px;
height: 300px;
background: red;
}
.son{
width: 100px;
height: 100px;
background: blue;
position: inherit;
left: 100px;
top: 100px;
}
</style>
</head>
<body>
<div class="per"></div>
<div class="son"></div>
</body>
</html>