gpt4 book ai didi

html - 表变得太大

转载 作者:太空宇宙 更新时间:2023-11-04 14:06:53 29 4
gpt4 key购买 nike

<table border="1" style="width:200px;">
<tr>
<td style="width:50px;overflow:hidden;">Who</td>
<td style="width:50px;overflow:hidden;">Time</td>
<td style="width:100px;overflow:hidden;">What</td>
</tr>
<?php
while($wr = mysqli_fetch_array($read)) {
echo' <tr>
<td>'.$wr['Who'].'</td>
<td>'.$wr['Time'].'</td>
<td>'.$wr['What'].'</td></tr>';
}

?>

$wr['What'] 正在从数据库中提取大数据,我的表格超过 200 像素。我该如何解决?

最佳答案

您可以使用 table-layout:fixed 并且它应该强制...

style="width:200px;table-layout:fixed"

Here's a fiddle with appropriate css.

关于html - 表变得太大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8658131/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com