您可以通过添加display:block
到您的输入来实现效果.. http://jsfiddle.net/NqN5y/6/
input[type=button] {
padding: 10px;
position: relative;
left: 350px;
z-index: 1000;
display:block;
}
另一个简单的解决方案是将按钮包含在 div 中。为 div 和 bingo 设置固定宽度。
http://jsfiddle.net/NqN5y/1/
<div id="buttons">
<input type="button" value="1"/>
<input type="button" value="2"/>
<input type="button" value="3"/>
<input type="button" value="4"/>
</div>
input[type=button] {
position: relative;
float: center;
padding: 10px;
left: 350px;
z-index: 1000;
}
#buttons{width:50px;}
然后,您可以将您的位置样式移动到容器 div.. http://jsfiddle.net/NqN5y/5/
input[type=button] {
padding:10px;
}
#buttons{width:50px;background-color:#afa;
position: relative;
left: 350px;
z-index: 1000;
}