我该怎么办? 代码:
<h3 style="float:left;">Change Ambient Light: </h3>
<button style="float:left;" type="button" onclick="changeAmbientLight('up')">+</button>
<button style="float:left;" type="button" onclick="changeAmbientLight('down')">-</button>
<br style="clear:both" />
答案 0 :(得分:1)
将浮动更改为display: inline-block
并添加vertical-align: middle
h3, button {
display: inline-block;
vertical-align: middle;
}
删除float: left