2016-01-07 28 views
-2

我正在使用基础框架的应用程序工作,但是当我在IE版本8和laters上看到应用程序时,列像图像中重叠。基金会不能在Internet Explorer上工作

Image

我使用的列从基础班,有的像

<div class="large-10 columns" style="height:40px"> 
    <div class="large-2 columns"> 
     <div class="large-5 columns">&nbsp;</div> 
     <div class="large-7 column"> 
      <a href="{{ url_for('loan', loan_id=loan['loan_id']) }}"> 
       <span class="subtable-item link">{{ loan['loan_id'] }}</span> 
      </a> 
     </div> 
    </div> 

....

有人能帮助我的黑客对IE浏览器或其他一些使该表看就像Chrome一样。

+0

为什么不张贴一些代码?我无法以这种方式帮助你。 –

+0

其他浏览器会发生什么情况,内容被剪掉还是列更宽? –

+0

基金会支持IE 9+ –

回答

0

你需要打开一个新行嵌套列 尝试

<div class="small-10 columns"> 
    <div class="row"> 
     <div class="small-5 columns">&nbsp;</div> 
     <div class="small-7 column"> 
      <a href="{{ url_for('loan', loan_id=loan['loan_id']) }}"> 
       <span class="subtable-item link">{{ loan['loan_id'] }}</span> 
      </a> 
     </div> 
    </div> 
</div> 
相关问题