em是相对于父级元素而言,rem是相对于根元素而言。

<head>      
<meta charset=utf-8>        
<style type=\"text/css\">          
	div {              
	/*补全代码*/              
	width:4rem;
	height:4rem;          
	}       
</style>   
</head>    
<body>        
	<div></div>  
</body>
</html>