我想在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中,每件事情都是正确的。问题是什么。
答案 0 :(得分:0)
你的代码很好。 IE9使用未标记的border-radius。
http://caniuse.com/#feat=border-radius
将此添加到您的<head>
<meta http-equiv="X-UA-Compatible" content="IE=9" />
这应该确保IE9运行border-radius。