内联元素问题
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>行内元素标签</title>
<style type="text/css">
/*a,span,em{*/
background:pink;/*设置a、span、em标签背景颜色都为粉色*/
/*}*/
span,em{display:block;}
</style>
</head>
<body>
<a href="http://www.baidu.com">百度</a>
<a href="http://www.imooc.com">慕课网</a>
<span>33333</span>
<span>44444</span><em>555555</em>
</body>
</html>
我把背景颜色为粉色部分注释掉之后让内联元素变成块状元素怎么变不了?