私は次のレイアウトを達成しようとしています:
+--------------------+ +-------------------+ +--------------------+
| Right column with | | small center with | | Right column with |
| multiple lines and | | fixed width | | multiple lines and |
| width of | | | | width of |
| (100%-center)/2 | | | | (100%-center)/2 |
+--------------------+ +-------------------+ +--------------------+
しかし、私の現在のマークアップでは、コンテンツが大きくなりすぎて行に収まらない場合、それ自体の中に改行を導入する代わりに、右側の列が残りの下に移動します。
+--------------------+ +-------------------+
| Right column with | | small center with |
| multiple lines and | | fixed width |
| width of | | |
| (100%-center)/2 | | |
+--------------------+ +-------------------+
+-------------------------------------------+
| Right column with multiple lines and... |
+-------------------------------------------+
これは私の現在のマークアップです:
<div style="text-align: center;">
<span style="float: left;">left</span>
<span>center</span>
<span style="float: right;">right</span>
</div>
どうすれば希望のレイアウトを実現できますか?ありがとう!