我在過去3個月一直在努力! - 如何適應css3到IE7,8和9?IE css如何?
這是我的網頁
我使用的按鈕在那裏,我想使圓角(基本的,不是嗎?) 所以我已經使用這個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的「擴展」,使其工作,但沒有任何東西!
有什麼建議嗎?
沒有'-ms-border-radius'或'-o-border-radius'這樣的東西。 – BoltClock
確保'.htc'文件與正在查看的html文件位於同一個文件夾中。我已經在IE8中測試了你的風格,並且它可以工作。 – Bob
嗨,這些設置來自羅盤sass(如果你聽說過)。 – devmonster