internet explorer 7 css问题

时间:2010-07-07 13:47:45

标签: html css internet-explorer smarty

您好我正在修改使用智能模板引擎的cs-cart主题。我可以将购物车链接移动到顶部菜单上方,它显示Ok与IE8 firefox等.Hovewer IE7创建一个空的空间。我怎么能让IE7开心我添加了必要的样式表和tpl files。主要的css文件是style.css和stle.base.css。


IE8没有空间 alt text http://public.blu.livefilestore.com/y1pSVU-pq1r6P8Tuw7rjpEieN8wCpAoC2VsmpBYWg3hG6xje45EWF6xrFAEXd7PBzfsNvgkpHK0WGoOVynnWrJrXg/ie8.png?psid=1

IE7空间 alt text http://7uil7a.blu.livefilestore.com/y1pvNHi8Zr3khcizQTV4TkL_sEQaJJKVh-JsiZntjHM4BbDKnE11mVFPf8Ug52P6_6klZM99ffApAV-EfNM4Fc3zmASjMggWaF0/ie7space.png?psid=1

2 个答案:

答案 0 :(得分:2)

IE7不能很好地渲染CSS。为IE7创建一个特殊的CSS文件,并将其包含在HTML中,如下所示:

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

在ie7.css中,修改边距,填充等,直到两个版本看起来相同。

答案 1 :(得分:2)

上面的答案很有帮助,但另外还有:

<head></head>标记中添加:

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

在ie7.css中添加元素,例如

.cart-thingy {
    margin: -10px 0 0 0;
}

等等。

这肯定也会有所帮助:

Conditional comments