简体   繁体   中英

CSS style for radios in Tapestry 5

How can I get rid of the box look of radio buttons in IE8? They look like this:IE8中的收音机

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM