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.
CSS に特有の問題があります。「VPS Plans」div と「Features」div を一緒にフローティングして、一番下に並べる必要があります。残念ながら、Features div のサイズを 460px に調整しないと、次の行に移動してしまい、わかりません。
ページはこちらからご覧いただけます。
ありがとう!
すべてが良さそうに見えますdisplay: inline-table;。以下の CSS を追加する必要があります。
display: inline-table;
要素はインライン レベルのテーブルとして表示されます
ul.vt li.vt-line-header { display: inline-table; //----Add this to your CSS }
ご理解いただければ幸いです。