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 计划' 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 }
希望你能理解。