我有如下按钮的 jquery ui 代码。我希望这一系列按钮适合相同的尺寸(810 像素)。它们在 Firefox 和 chrome 中显示为相同大小,但在 IE 中看起来更小。我尝试更改字体大小并具有固定宽度,但这并不能解决问题。谁知道怎么修它?谢谢你。
<script>
$(function() {
$( "#link" ).buttonset();
});
</script>
<style>
#link{
font-size: .74em !important;
width: 810px;
border: 1px solid #333;
}
</style>
<div id="link">
<a href="abc.php">ABC</a>
<a href="efg.php" target="content">EFG</a>
</div>