I attempted to re-size two buttons in MSIE, so they would be extra-large but I get ugly aliasing.
{%html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"%}
{%head%}
{%title%}ugly button{%/title%}
{%style%}
button {
height:100px;
margin:2em;
width:450px;
}
{%/style%}
{%/head%}
{%body%}
{%h2%}ugly button{%/h2%}
{%button id="ugly" onclick="alert('ugly');"%}click me{%/button%}
{%/body%}
{%/html%}
Of course it looks fine in every other browser I tried:
http://img535.imageshack.us/img535/2416/buttonugly001a.png
Is there a workaround for getting large buttons without this unwanted appearance?
Update: Important note I am not using images in this example. This is just the application of CSS to the native "button" element in MSIE.