gpt4 book ai didi

CSS 在 IE 中看起来很糟糕

转载 作者:太空宇宙 更新时间:2023-11-04 05:29:54 26 4
gpt4 key购买 nike

我在 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>

我怎样才能让这个所有浏览器都友好?

最佳答案

我建议您使用 IE specific conditional评论。这样你就可以针对 IE 特性,使用 IE 特定的样式表。

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

关于CSS 在 IE 中看起来很糟糕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3648984/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com