我有CSS問題,我找不出來。這是標記。如何使用CSS縮小父容器縮小
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<style type="text/css">
.container { position: relative; background-color: purple; padding: 0; margin: 0; }
.first { float: left; width: 10%; min-width: 100px; background-color: yellow; }
.second { float: left; width: 10%; min-width: 100px; background-color: orange; }
.third { float: left; width: 80%; background-color: lime; }
.clear { clear: both; }
</style>
</head>
<body>
<div class="container">
<div class="first">first</div>
<div class="second">second</div>
<div class="third">third</div>
<div class="clear"></div>
</div>
</body>
</hmtl>
我遇到的問題是,我想換行第三格,當我縮小瀏覽器窗口,但它完全展開(100%),一旦換到一個新行。我很接近,但是當第三個div覆蓋時,有80%的財產開始投入,並且不允許它完全擴張。 I have a fiddle ready for tweaking here.下面是可視化問題的圖像。您可以在第二張圖片中看到第三個div在包裝發生時不是100%展開。
當我的jsfiddle收縮的iframe這不換行。 – Halcyon
這不符合OP正在努力完成的任務 – Joe