test http://o7.no/U5w2EV如何讓子div在HTML中填充其父文件夾中所有剩餘的水平空間?
這個結構是:
<div id='container'>
<div id='play'>▶</div>
<div id='res'>RES</div>
<div id='bar'>test</div>
<div id='time'>0</div>
</div>
的風格是:
爲#container的
#container
{backgroundColor:'#CCCCCC',
position:'absolute',
bottom:'-40px',
width:'100%',
height:'40px'}
的按鈕#res和#bar
#res , #bar
{width:30px;
height:30px;
border:1px solid #DDDDDD;
margin:5px;
font-weight:bold;
cursor:pointer;
float:left}
爲#TIME
#time
{float:'left',fontSize:'16px',margin:'12px 5px'}
注:容器的容器(其中,所花費的100%)的寬度dinamically變化。
如何將CSS設置爲#bar div填充其他div的剩餘空間?
取決於您到目前爲止應用於其他元素的空間樣式。 – cdesrosiers