Сообщение от рони
|
извини а что ты правил ?
|
<!DOCTYPE html>
<style>
button {
background: #fc0;
border: 0 none;
cursor: pointer;
outline: none;
vertical-align: top;
padding: 5px;
}
button span {
position: relative;
top: 0;
left: 0;
border: 0;
}
</style>
<button type="submit"><span>I'm a button</span></button>
а стало:
<!DOCTYPE html>
<style>
button {
background: #fc0;
border: 0 none;
cursor: pointer;
outline: none;
vertical-align: top;
padding: 0;
}
button span {
position: relative;
top: 0;
left: 0;
border: 0;
padding: 5px;
display: inline-block;
}
</style>
<button type="submit"><span>I'm a button</span></button>
В общем, он в стиле
button span { }
добавил две строки
padding: 5px;
display: inline-block;