Я занят кнопками на веб-сайте. В Chrome, IE, Firefox все кнопки выглядят красиво и хорошо, но в Safari 5.0 наблюдается странный интервал.
Смотрите здесь скриншот:
CSS:
button{
background-image : url(../gfx/forms-btn-l.gif);
background-position : left top;
background-repeat : no-repeat;
background-color : transparent;
border : none;
outline: none;
padding : 0 0 0 13px;
margin : 0 ;
cursor : pointer;
overflow: visible;
width : auto;
height : 30px;
}
span{
float : left;
background-image : url(../gfx/forms-btn-r.gif);
background-position : right top;
background-repeat : no-repeat;
background-color : transparent;
overflow : hidden;
padding : 0 13px 0 0;
margin : 0;
font-family : Arial;
font-size : 12px;
font-weight : bold;
line-height : 2.44em;
text-shadow: 1px 1px 1px #d75700;
color : #FFFFFF;
white-space : nowrap;
height : 30px;
}
HTML:
<button type="submit"><span>Zwart</span></button>
Как я могу это исправить?