テーブルセルの上隅に要素を配置する必要があり、テキストは下にスタックする必要があります。私はvertical-align:bottomを使用してすべてのテキストを下に移動しましたが、テーブルセルは相対的な配置をサポートしていないため、top要素に問題があります...これをどのように行うことができますか?
<div style = "display: table-cell; vertical-align: bottom">
<div class = "top"> Top corner</div>
<h2> some text in the bottom </h2>
<h3> some more text in the bottom </h3>
</div>
編集:それはこのように見えるはずです
+-----------+ +-----------+ +------------+
|top text | |top text | |top text |
| | | | | |
|some long | | | | |
|text | | | | |
|more long | | | | |
|text | | | | |
|end of | | | |some text |
|text | |text | |text |
|<button> | |<button> | |<button> |
+-----------+ +-----------+ +------------+
これはすべて、display:tableを使用してdivにラップされています。ここでdisplay:table-cellを使用する理由は、これらの列を同じ高さに保ち、列内のさまざまな長さのテキストに対応できるように柔軟にするためです。