これを機能させる方法を知っている人は誰でも:
<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>
私が望むのは、左側に左ボタン、右側に右ボタン、テキストを2つのボタンの間、つまり外側のdivの中央に配置することだけです。
テキストボタンに display:inline を使用してみましたが、うまくいきませんでした。
したがって、私の出力は次のようになります。
ボタン左-----------------------------------テキスト------------------------- ボタン右
前もって感謝します