如何在IE9中为HTML制作圆角边框

时间:2012-10-18 08:42:54

标签: html internet-explorer-9 css3

我想在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中,每件事情都是正确的。问题是什么。

1 个答案:

答案 0 :(得分:0)

你的代码很好。 IE9使用未标记的border-radius。

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

将此添加到您的<head>

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

这应该确保IE9运行border-radius。