The same piece of codes (see below) generated different displays on Firefox and IE.
<style>
.linkButton {
background: #7CFC00
text-decoration: none;
border: 1px solid #aaa;
border-radius: 5px;
display: inline-block;
padding: 3px 6px
}
</style>
...
<a href="test.html" class="linkButton">Test</a>
On Firefox: shown the corners of the button as round
On IE: shown the corners of the button as angled
How can I make the above button round-cornered on IE, just like the FF one?


Reply With Quote
Bookmarks