这个结构是:
<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
{float:'left',fontSize:'16px',margin:'12px 5px'}
注意:容器的容器宽度(占 100% 的位置)会发生动态变化。
如何将CSS设置为#bar div填充其他div剩余的所有空间?