html - Foundation is not working on Internet Explorer -


i working on application using foundation framework when see applicaion on ie version 8 , laters, columns overlaps in image.

image

i using columns class foundation,

<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> 

....

somebody me hacks ie or else makes tables in same way chrome.

you need open new row nested columns try it

<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> 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -