我正试图用html将两个按钮放在另一个里面。我试过这个:
<div id="photoShow" style="width: 190px; height: 212px">
<input type="button" runat="server" id="btn_ShowImage" style =" background-image: url('photos/Analog50.jpg'); width: 55px; height: 54px;"
onclick="return btn_ShowImage_onclick()" /><asp:Button
ID="btn_AddProductToReservation" Height="180px" Width="194px"
runat="server" style="margin-top: 0px; margin-left: 0px;" />
</div>
很想得到一些帮助,谢谢
答案 0 :(得分:2)
把它们放在这样的div中:
<div style="float:left"><button></button><button></button></div>
所以你可以把它们放在一边,把按钮放在一起是没有意义的!
答案 1 :(得分:0)
如果你使用twitter bootstrap,你可以把这些按钮放在另一个里面:
<div class="btn btn-primary btn-large">
out out
<div class="btn btn-primary btn-large">
in in
</div>
out out
<div class="btn btn-primary btn-large">
in in
</div>
out out
</div>
它将按预期呈现