我这里有一个网站...
在 Chrome/FF 中查看它,您会看到标签带有圆角。IE8 仍然显示方角。
这是我的 PIE 被调用的 CSS ......
.class-name { background-color: #fff; float:left; margin: 10px 5px 10px; height: 15px; line-height: 15px; vertical-align: middle; padding: 15px; width: auto; font-size: 14px; font-weight: bolder; color: #000000; text-align: center;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;
border-top-right-radius: 20px;
border-top-left-radius: 20px;
-moz-border-radius-bottomright: 20px;
-moz-border-radius-bottomleft: 20px;
-moz-border-radius-topright: 20px;
-moz-border-radius-toopleft: 20px;
border-radius: 20px; /*PIE only supports parsed CSS (Shorthand) */
behavior: url(PIE.htc); }
我的 PIE 文件位于我的根文件夹中。我只是不明白我在这里错过了什么......