2013-06-25 47 views

回答

1

你可以嘗試這樣的事情:

<div class="row-fluid"> 
<div class="span12"> 
    <div class="fixed_width"></div> 
    <div class="variable_width"></div> 
</div> 
</div> 

和CSS

div.fixed_width { 
width: 300px; 
// or try with: "float:left;" too 
} 

div.variable_width { 
overflow: hidden; 
// if you use float:left in the other, don't use overflow here, but try with: "width:100%;" 
} 

在這裏你可以找到一個更一般的例子(http://jsfiddle.net/glee/6Cavr/

相關問題