我有一个列表 ul,我想内联显示 li 元素。我对 Firefox、Chrome 和 Safari 没有问题,但我在 IE 8/9 上遇到了一些问题,因为它以错误的方式显示列表。这是CSS:
#news #marquee-news ul{
padding: 0;
margin: 0;
/*white-space: nowrap;*/
margin-top: 8px;
display: inline;
}
#news #marquee-news ul li{
list-style: none;
color: #fff;
display: inline;
font-size: 16pt;
}
#news #marquee-news ul li:first-child{
margin-right: 40px;
}
#news #marquee-news ul li a{
color: #fff;
}
#news #marquee-news ul li a:hover{
text-decoration: none;
color: #fff;
}
#news #marquee-news .bullet-news{
color: #fff;
}
#news #marquee-news li:hover .bullet-news{
color: #fff;
}
这是html代码:
我尝试在 li 上使用 float:left 但不能解决问题。有人能帮助我吗?感谢您的答复。