如何让css3适配IE7、8、9?

问题描述 投票:0回答:3

如何让css3适配IE7、8、9?

这是我的页面

我在那里使用按钮,我想制作圆角(基本,不是吗?) 所以我用了这个css

body .main_title {
  font-size: 16px;
  padding: 0.3em 1.5em;
  display: inline-block;
  cursor: pointer;
  line-height: 1.5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background-color: #222222;
  color: white;
  behavior: url(PIE.htc);
}

按钮是

<button type="submit" id="1" class="main_title">מאפיינים</button>
        

正如您所注意到的,我还使用了一个名为 css3pie 的“扩展”来使其工作,但什么也没做!!

有什么建议吗?

css internet-explorer-8 internet-explorer-9 internet-explorer-7
3个回答
3
投票

有什么建议吗?

坐下来。放松。不要担心市场份额下降的旧浏览器中的小装饰细节。


0
投票

CSS3 馅饼有点问题。尝试在上面加上

position:relative;
。还要确保这是 PIE.htc 的正确路径 - 如果我没记错的话,绝对链接到它可能会有所帮助。


0
投票

我认为你可以在 javascript 中使用 jquery http://jquery.malsup.com/corner/

从 IE9 开始的任何内容都可以在 css 中使用此功能

border-radius:10px

http://caniuse.com/#search=border-radius

© www.soinside.com 2019 - 2024. All rights reserved.