<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>流动模式下的内联元素</title>
<style type="text/css">
a,span,em{
border:1px solid blue;
padding:5px;
};
#foe{
border:1px solid red;
padding:10px;
};
</style>
</head>
<body>
<div id="foe">
<a href="http://www.imooc.com">www.imooc.com</a><span>强调</span><em>重点</em>
</div>
<strong>强调</strong>
</body>
</html>
以上样式输入后,显示出来的边框到底是哪一个,为什么?
千秋此意