码迷,mamicode.com
首页 > 其他好文 > 详细

IE6下span右浮动换行怎么处理

时间:2015-07-07 16:15:23      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

IE6下span右浮动换行怎么处理:
在编写新闻列表的时候,一般要求左边是新闻标题,右边是新闻发布时间。时间一般会放在<span>标签中,并将其右浮动。
代码如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.51texiao.cn/" />
<title>蚂蚁部落</title>
<style type="text/css">
li{
  list-style-type:none;
  font-size:12px;
  color:blue;
  width:300px;
  height:30px;
  line-height:30px;
  border-bottom:1px dashed blue;
}
span{
  color:red;
  width:60px;
  height:30px;
  float:right;
}
</style>
</head>
<body>
<div>
  <ul>
    <li><a href="#">蚂蚁部落欢迎您</a><span>2012-12-13</span></li>
    <li><a href="#">大家好,好久不见了</a><span>2012-12-13</span></li>
    <li><a href="#">蚂蚁部落</a><span>2012-12-13</span></li>
  </ul>
</div>
</body>
</html>

以上代码在IE8或者FF浏览器中是正常的,但是在IE6浏览器中时间却换行了。
解决方案:将<a>标签和<span>标签分别浮动起来,分别左右浮动即可。代码如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.51texiao.cn/" />
<title>蚂蚁部落</title>
<style type="text/css">
li{
  list-style-type:none;
  font-size:12px;
  color:blue;
  width:300px;
  height:30px;
  line-height:30px;
  border-bottom:1px dashed blue;
}
a{
  width:240px;
  height:30px;
  float:left;
}
span{
  color:red;
  width:60px;
  height:30px;
  float:right;
}
</style>
</head>
<body>
<div>
  <ul>
    <li><a href="#">蚂蚁部落欢迎您</a><span>2012-12-13</span></li>
    <li><a href="#">大家好,好久不见了</a><span>2012-12-13</span></li>
    <li><a href="#">蚂蚁部落</a><span>2012-12-13</span></li>
  </ul>
</div>
</body>
</html>

原文地址:http://www.51texiao.cn/div_cssjiaocheng/2015/0429/419.html

IE6下span右浮动换行怎么处理

标签:

原文地址:http://www.cnblogs.com/nulifendou/p/4627195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!