有谁知道如何在不使用float:left
的情况下对齐这些jquery按钮?
当使用<button>
和任何其他元素,如<a>
时,会发生此问题:
http://jsbin.com/afixij/edit#javascript,html,live
jQuery的网站上也存在相同的问题:
http://jqueryui.com/demos/button/#default
最佳答案
这是因为.ui-button
中的jquery-ui.css
类正在使用display: inline-block;
如果将其更改为display: inline-table;
,问题就消失了
关于jquery - jQuery按钮未正确对齐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10033875/