1

一度に多くの結果 (25 など) を表示しようとしていますが、私のプログラムは、領域スペースがまだ利用可能な 5 番目のレコードの周りの結果をカットしました。結果は動的に作成されたテーブルにありますが、それに応じて領域が拡張されないようです。

<div id="contenido" class="contenido">

 <div id="Tabs">
<ul style="cursor:pointer;">
<li id="li_tab1" onclick="tab('tab1')" >
           <a>&Uacute;ltimas alertas</a>  </li>
    <li id="li_tab2" onclick="tab('tab2')">  <a>otras</a> </li>
</ul>

<div id="Content_Area">

    <div id="tab1">
        <p class="notas">Showing last alerts</p>
        <table>
            <tr>
                <td style="color:blue">Alert</td>
                <td style="color:blue">User</td>
            </tr>
            <?php
                while ( $row = $result->fetch_array() ){

                   echo "<tr><td>".$row['DESCRIPTION']."</td>";
                echo "<td>".$row['EMAIL']."</td>";
                echo "<td>".$row['SUB_SECCION']."</td></tr>";                   
                }
            }
            else
                echo "error on query: ".$conx->error;
            }//else
            ?>
        </table>        
    </div>

    <div id="tab2" style="display: none;"> 
         <!-- We set its display as none because we don’t want to make this
             tab visible by default. The only visible/active tab should 
             be Tab 1 until the visitor clicks on Tab 2. -->
        <p>This is the text for tab 2.</p>
    </div>

    </div> <!-- End of Content_Area Div -->
     </div> <!-- End of Tabs Div -->

     </div>

CSS はタブを作成しますが、現時点では最初のテーブルのみがテーブルを持ち、他のテキストは 1 行だけですが、テーブルはこのタブ div アーカイブ css内にあります

 .contenido {  
 color: black;/*#333*/
 background-color: #F2F2E6;

 margin: 0px 0px 5px 0px;
 padding: 10px;
 border: 1px solid #ccc;

 width: 75%;/*678px;*/
 height: 480px;

 float: right; 
 display: inline; 
 }

   #Tabs ul {
padding: 0px;
margin: 0px;
margin-left: 10px;
list-style-type: none;
   }

   #Tabs ul li {
display: inline-block;
clear: none;
float: left;
height: 24px;
    }

  #Tabs ul li a {
position: relative;
margin-top: 16px;
display: block;
margin-left: 6px;
line-height: 24px;
padding-left: 10px;
background: #f6f6f6;
z-index: 9999;
border: 1px solid #ccc;
border-bottom: 0px;

/*  make the top left and top right corners of each tab rounded. */
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
/* end of rounded borders */

width: 130px;
color: #000000;
text-decoration: none;
font-weight: bold;
       }

   #Tabs ul li a:hover {
text-decoration: underline;  
color:red;
    }

    #Tabs #Content_Area { 
   /* this is the css class for the content displayed in each tab */
padding: 0 15px;
clear:both;
overflow:hidden;
line-height:19px;
position: relative;
top: 20px;
z-index: 5;
height: 150px;
overflow: hidden;
      }

     p { padding-left: 15px; }
4

2 に答える 2