I have HTML / CSS that works fine in Firefox; however in Chrome, the shape / border is compressed! I play with the code for several hours to no avail. Can anybody help? Thank!
Here is the fiddle: http://jsfiddle.net/W22DC/19/
Or, if you want, the code below ...
CSS:
.form1 input{
font-weight:normal;
font-size:100%;
border: 2px solid purple;
-moz-border-radius:15px;
-khtml-border-radius:15px;
-webkit-border-radius:15px;
border-radius:15px 15px 15px 15px;
background-color:transparent;
padding: 2px 6px 2px 6px;
}
.form1 input:hover, input:focus{
border: 2px solid black;
cursor:pointer;
}
HTML:
<br />
<div class="form1" align="center"><form name="Example" action="" method="post" style="margin-bottom: 0">
<input type="submit" name="submit" value="7" />
</form></div>
<br />
source
share