Answer the question
In order to leave comments, you need to log in
Why does text in a button element have different lengths in Chrome and Firefox?
In chrome the length is 98px and in Firefox it is 113px. Why is this happening? I need the text to be the same length.
<!DOCTYPE html>
<html>
<head>
<style>
.a{
margin: 0;
padding: 10px;
border: 0;
}
</style>
</head>
<body>
<button class="a">Приветствие</button>
</body>
</html>
Answer the question
In order to leave comments, you need to log in
Try removing padding in FF
button::-moz-focus-inner {
border: 0;
padding: 0;
}
используйте какой-нибудь css reset,возможно это несколько исправит ситуацию
возможно из-за шрифта. в мозилле и в хроме бывает шрифты по-разному выглядят. особенно это на убунте заметно. не знаю точно - рендерятся ли они по-разному или дефолтные настройки разные. надо гуглить.
Потому что Chome это ппц, а не браузер - вот почему :D
ЗЫ. Такой вывод я сделал после 2-х дней мучения с Chrome+HTML5
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question