任何人都知道我怎样才能让它工作:
<div width="100%" style="background-color:#0000FA;">
<div style="float:left;width:110px;background-color:#F1F1F1;">
<form action="/dashboard/" id="PREVIOUS_MONTH" method="post">
<input type="submit" class="button-orange" value="Previous Month">
</form>
</div>
<div style="float:left;width:300px;text-align:center;">
January
</div>
<div style="float:right;width:80px;background-color:#F9F0F0;">
<form action="/dashboard/" id="NEXT_MONTH" method="post">
<input type="submit" class="button-orange" value="Next Month">
</form>
</div>
</div>
我想要的只是在左侧获得左按钮,在右侧获得右按钮以及要在两个按钮之间对齐的文本,即在外部 div 的中间。
我尝试使用 display:inline 作为文本按钮,但我没有任何运气。
所以我的输出是:
左按钮---------------------文本------------按钮对
提前致谢