我在按钮内获取 SPAN(或 DIV)以转到 Firefox(版本 20)中按钮的完整高度时遇到问题。
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>