Bir div undernearth kayıtların al arge listesini kaydırmak için mümkün iken ben bir yerde ayrı div kalmak, bir tablo başlığı için çalışıyorum. Her iki divs Layer 3 adında bir div vardır burada sadece ben kullanıyorum css dosyası.:
#Layer3
{
position:absolute;
width: 89%;
height: 40%;
left: 10%;
top: 56%;
background-color: #f1ffff;
}
#Layer3 h1 {
font-size: medium;
color: #000033;
text-decoration: none;
text-align: center;
}
.tableheader {
}
.tablecontent {
overflow: auto;
}
ve ben html oluşturmak için kullanıyorum php kod parçası:
echo '<div id="tableheader" class="tableheader">';
echo "<h1>{$query} Auctions</h1>" . "\n";
echo "</div>";
echo '<div id="tablecontent" class="tablecontent">';
echo "<table border='0' width='100%'><tr>" . "\n";
echo "<td width='15%'>Seller ID</td>" . "\n";
echo "<td width='10%'>Start Date</td>" . "\n";
echo "<td width='75%'>Description</td>" . "\n";
echo "</tr>\n";
// printing table rows
foreach ($rows as $row)
{
$pk = $row['ARTICLE_NO'];
echo '<tr>' . "\n";
// table contens generated in here
echo '</tr>' . "\n";
}
}
echo "</div>";
Ben cevapsız ne emin değilim, ama tableheader sabit veya tablecontent bile ayrı olmak görünmüyor.