-1

我想在 Asp.net HTML 页面内有一个圆桌角,所以我编写了以下 HTML 代码,以便在 Chrome 和 Mozila 以及 IE 中可见(我使用的是 IE9)。

<style type="text/css">.round{-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}
</style>

除了 IE9 之外,一切都是正确的。有什么问题。

4

1 回答 1

0

你的代码很好。IE9 使用无前缀的边界半径。

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

将此添加到您的<head>

<meta http-equiv="X-UA-Compatible" content="IE=9" />

这应该确保 IE9 运行边界半径。

于 2012-10-18T08:49:48.527 回答