CSS在IE中看起来很糟糕

时间:2010-09-06 04:21:00

标签: css internet-explorer firefox cross-browser html

我在IE中遇到了CSS问题

此页面在Firefox,Chrome,opera中看起来很不错....但在IE上,“日期栏”重叠在第一个<li>栏上

此处:http://www.animefushigi.com/latest-episodes

CSS如下:

#content h2.other-posts {
    height: 31px;
    font-size:12px;
    line-height: 31px;
    background: #2c2b2b;
    padding: 0 10px;
    border: 1px solid #1b1b1b;
    color: #888888;
    margin-bottom:1px;
}

#content #other-posts {
    list-style: none;
    padding: 1px;
    margin-top:15px;
    margin-bottom:15px;
    margin-left: 20px;
}
#other-posts li {
    list-style: none;
    background: #151515;
    height: 30px;
    line-height: 30px;
    border-left: 1px solid #050505;
    border-right: 1px solid #151515;
    border-bottom: 1px solid #050505;
    border-top:1px solid #0f0f0f;
    margin-bottom: 1px;
    padding: 0 10px;
}

#other-posts li a {
    float: left;
}

Wordpress PHP文件如下:

<ul id="other-posts">

<?php
$postslist = get_posts('numberposts=50&order=desc&orderby=date');
foreach ($postslist as $post) : setup_postdata($post);
?> 
<?php the_date('', '<h2 class="other-posts">Added on ', '</h2>'); ?>

 <li><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
   <?php the_title(); ?>
   </a></li>

<?php endforeach; ?>
</ul>

如何才能使这个浏览器友好?

2 个答案:

答案 0 :(得分:2)

我建议您使用IE specific conditional条评论。通过这种方式,您可以使用IE特定的样式表来定位IE特性。

<!--[if IE]><link rel="stylesheet" type="text/css" href="ie/specific/css.css"> <![endif]-->

答案 1 :(得分:0)

尝试:

#other-posts li { display:inline }

而不是将显示规则应用于“li a”。这是您想要内联显示的列表项,而不是内部链接。

编辑:非常抱歉。你知道'没有'的来源。

尝试删除浮动并指定列表的宽度或高度。