
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 0.45 KB | hits: 7 | expires: Never
button loses default border rounding in IE and Firefox when changing border-style, but works fine in Opera, Chrome, and Safari
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<style type="text/css">
input {
border-width: 2px; /* causes button to change dramatically in IE and FireFox */
}
</style>
</head>
<body>
<input type="button" value="Print"/>
</body>
</html>