Tapestry 5 中收音机的 CSS 样式

发布于 2024-11-28 05:27:17 字数 153 浏览 1 评论 0原文

如何摆脱 IE8 中单选按钮的框外观?它们看起来像这样: radios in IE8

它们在其他浏览器中看起来很正常。我正在使用 Tapestry 5。

谢谢。

How can I get rid of the box look of radio buttons in IE8? They look like this: radios in IE8

They look normal in other browsers. I'm using Tapestry 5.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぇ气 2024-12-05 05:27:17

听起来你在所有 INPUT 标签周围都有一个边框,这些标签很可能来自你自己的 css 某处,因为我不相信 Tapestry 默认添加它。

将其添加到您的 css 中应该可以解决它。

input[type="radio"] {
    border: 0 none;
}

如果没有,您将必须分享您的 html 和 css,以便我们可以仔细查看。

It sounds like you have a border around all INPUT tags which most likely comes from your own css somewhere as I don't believe tapestry adds it by default.

Adding this to your css should resolve it.

input[type="radio"] {
    border: 0 none;
}

If it doesn't, you'll have to share your html and your css so we can have a closer look.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文