span border-top,border-bottom属性在IE不显示解决方法,兼容IE ,Chrome,Firefox

来源:互联网 发布:linux不能查看历史命令 编辑:程序博客网 时间:2024/06/06 00:42

默认情况下。span设置了宽度不管用~ 多加一个css  ----------------display:inline-block

<html>
<head>
</head>
<body>
<div style="width:460px;height:20px;line-height:20px;margin:0 auto; text-align:center;border:1px red solid;font-size:12px;">
  <span style="width:48px;height:20px;line-height:20px;border:1px solid #333;display:inline-block;">首页</span>
 <span style="width:48px;height:20px;line-height:20px;border:1px solid #333;display:inline-block;">1</span>
 <span style="width:70px;height:20px;line-height:20px;border:1px solid #333;display:inline-block;">下一页</span>
</div>
</body>
</html>

 原文出自:http://blog.csdn.net/jiushuai/article/details/5692353