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.
footer在这个例子中,如何使第二个 div 扩展到整个宽度?
footer
我想避免给第二个 div 一个宽度。第一个 div 的固定宽度为80px
80px
更新:那么如何使黑狐狸与浅灰色狐狸具有相同的高度?
使用float:left代替display:inline-block并将浮动仅应用于第一个 div。
float:left
display:inline-block
jFiddle在这里
div { padding: 20px; background-color: #ccc; } div:first-child { width: 80px; background-color: #000; color: #fff; float:left; }