如何使表适合iframe?

时间:2015-07-23 05:53:08

标签: html css twitter-bootstrap

我的表格宽度500px和iframe固定大小为200px

我需要使用CSS或Bootstrap使表适合iframe

任何想法我该怎么做?

2 个答案:

答案 0 :(得分:0)

我会在桌面上使用内联CSS,然后将其压缩到iframe中。你没有提供任何代码,但它看起来像这样:

function getvalue(elem){
 var listElem='<li class="list" style="height: 18px; display: inline-       block;width:100px;line-height: 20px;padding-right:25px;"><a class="anchor"      id=""+results+"" href="#stay"  style="width:1028px;">"+results+"</a>  </li>';
 var id=$(elem).attr('id');
 $('#'+id).html(listElem);//your code
}

答案 1 :(得分:0)

<!----- if iframe is inside----------------->
<table style = "width: 500px; height: 500px;">
  <div class="container">
      <div class="row-fluid">
          <iframe> <!-- insert content here --> </iframe>
      </div>
  </div>
</table>



<!-- if table is inside --> 

<iframe style = "width: 200px; height: 200px;">
  <div class="container">
    <div class="row-fluid">
      <table> </table>
    </div>
  </div>
</iframe>