内联元素a转换为块状元素怎么不行?
我在上面的源代码增加了a{color:green;}和<a href="www.immoc.com"></a>,并没有换行啊,怎么回事?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>内联块状元素</title>
<style type="text/css">
div,p{background:pink;}
a{color:green;}
</style>
</head>
<body>
<div>div1</div>
<div>div2</div>
<p>段落1段落1<a href="www.immoc.com">段落1</a>段落1段落1</p>
</body>
</html>