Firefox (バージョン 20) で、ボタン内の SPAN (または DIV) をボタンの高さいっぱいまで取得するのに問題があります。
http://jsfiddle.net/spiderplant0/BwwuV/
IE10 と Chrome で問題なく動作します。
各ボタンの高さを計算してpxで明示的に設定する以外に、これに対する解決策があるかどうかは誰にも分かりますか?
#id1_container {
display: block;
text-decoration: none;
cursor: pointer;
box-shadow: none;
background: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
width: 100px;
height: 100px;
padding: 0;
border: 1px solid green;
}
#id1_container > * {
display: block;
height: 100%;
width: 100%;
background: pink;
}
<button type="button" id="id1_container"><span>hello</span></button>