html按钮在firefox和chrome中的表现非常不同.以此为例
http://jsfiddle.net/nuu1bfe2/.
<div> <button>hi</button> <button>hi<br/>you,there</button> </div>
在firefox中,它们被放置在父级的底部,但是在chrome中它们被放置在顶部.如何确保按钮始终位于顶部.
解决方法
使用:
button{ vertical-align: top; }