css样式不适用于IE6.0
我正在 myPage.jsp 中使用 Jquery 创建一个按钮。它在 Mozilla firefox 中工作正常,但 css 没有在 IE 中应用。 ui-corner-all 不适用于 IE。角不是圆的。
<html>
<head></head>
<body>
<input type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false" value="button"></input>
</body>
</html>
i am creating a button using Jquery in myPage.jsp. it is working fine in Mozilla firefox but the css are not getting applied in IE . ui-corner-all is not applying in IE. the corner are not rounded.
<html>
<head></head>
<body>
<input type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false" value="button"></input>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE 6 不支持
border-radius
CSS 属性。看看所有浏览器中的 CSS 圆角(无图像) 博客文章。IE 6 doesn't support
border-radius
CSS attribute. Take a look at CSS Rounded Corners In All Browsers (With No Images) blog post.