开发者

CSS style for radios in Tapestry 5

开发者 https://www.devze.com 2023-03-25 07:56 出处:网络
How can I get rid of the box look of r开发者_StackOverflow中文版adio buttons in IE8? They look like this:

How can I get rid of the box look of r开发者_StackOverflow中文版adio buttons in IE8? They look like this:

CSS style for radios in Tapestry 5

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

Thanks.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消