2014-01-08 116 views
0

解決這就像表中有一個maximun寬度預定義的,但不知道是什麼問題...表寬度不調整到

,你可以看到這裏的表是outter DIV外面當分辨率爲1024x768

代碼:

outter格:

<div id="resourceGenerator_details_tab_div" class="tabsContent" style="float: none; height: auto; width: auto; display: block;" tabclick="" tabtext="Details" parenttabbarid="rg_tabBar" buttonid="rg_tabBar_resourceGenerator_details_tab_div_tab"> 

此專區內,我有:

<table cellspacing="0" cellpadding="1" border="0" style="width: auto; height: auto;"> 

回答

0

代替auto,使用100%

<table cellspacing="0" cellpadding="1" border="0" style="width: auto; height: auto;"> 

使它到:

<table cellspacing="0" cellpadding="1" border="0" style="width: 100%; height: auto;"> 

,並確保在添加表width:100%;height:100%;

0

width:100%container你的外divtable。這將工作正常。

0

而不是在外部使用width:auto使用width:100%。我試了一下,它的工作原理。