Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
inline-block と table-cell の違いは何ですか?
この 2 つのスタイルは同じであることがわかりました。あなたのスタイルは何でも。text-align: center; vertical-align: middle;などを識別するdisplay: inline-block;かdisplay: table-cell;、同じように機能します。
text-align: center; vertical-align: middle;
display: inline-block;
display: table-cell;
主な違いをお知らせください。
display:table-celldisplay:table-rowは、の内部で使用することを目的としていますdisplay:table。不適切に使用すると、匿名要素が作成され、レイアウトの他の側面に悪影響を与える可能性があります。
display:table-cell
display:table-row
display:table
そうは言っvertical-alignても、両方で非常に異なる意味を持っています。ではdisplay:inline-block、要素自体が周囲の要素とどのように整列するかを指します。一方、 ではdisplay:table-cell、その中の要素の垂直方向の配置に影響します。
vertical-align
display:inline-block