gpt4 book ai didi

html - 如何保持表格 100% 宽?

转载 作者:太空宇宙 更新时间:2023-11-03 20:20:53 27 4
gpt4 key购买 nike

我有一个您可以访问的应用程序 here .当您打开应用程序时,只需单击加号按钮,您就会看到一个带有搜索栏的模态窗口。

现在请执行这两个搜索:

搜索 1:AAA

搜索 2:AAE

您会看到,在 AAE 搜索中,表格会达到全宽,这很好,但如果您进行 AAA 搜索,表格的宽度会小很多。

我希望表格的宽度始终保持在 100%(不希望它变小),但我不知道该怎么做。

如何修改下面的代码才能满足要求?

下面是对应表格的php代码:

     $output = "";
$output .= "
<table border='1' id='resultbl'>
<tr>
<th id='questionth'>Question</th>
<th id='optiontypeth'>Option Type</th>
<th id='noofanswersth'>Number of <br/> Answers</th>
<th id='answerth'>Answer</th>
<th id='noofrepliesth'>Number of <br/> Replies</th>
<th id='noofmarksth'>Number of <br/> Marks</th>
</tr>
";
while ($questionrow = mysql_fetch_assoc($questionresult)) {
$output .= "
<tr>
<td id='questiontd'>{$questionrow['QuestionContent']}</td>
<td id='optiontypetd'>{$questionrow['OptionType']}</td>
<td id='noofanswerstd'>{$questionrow['NoofAnswers']}</td>
<td id='answertd'>{$questionrow['Answer']}</td>
<td id='noofrepliestd'>{$questionrow['ReplyType']}</td>
<td id='noofmarkstd'>{$questionrow['QuestionMarks']}</td>
</tr>";
}
$output .= " </table>";

echo $output;

下面是完整的 css 代码:每个列标题和行都居中对齐并具有最小和最大宽度,表格本身的最小和最大宽度为 100%:

#questionth{
min-width:35%;
max-width:35%;
text-align:center;
}

#optiontypeth{
min-width:15%;
max-width:15%;
text-align:center;
}

#noofanswersth{
min-width:10%;
max-width:10%;
text-align:center;
}

#answerth{
min-width:20%;
max-width:20%;
text-align:center;
}

#noofrepliesth{
min-width:10%;
max-width:10%;
text-align:center;
}

#noofmarksth{
min-width:10%;
max-width:10%;
text-align:center;
}

#questiontd{
min-width:35%;
max-width:35%;
text-align:center;
}

#optiontypetd{
min-width:15%;
max-width:15%;
text-align:center;
}

#noofanswerstd{
min-width:10%;
max-width:10%;
text-align:center;
}

#answertd{
min-width:20%;
max-width:20%;
text-align:center;
}

#noofrepliestd{
min-width:10%;
max-width:10%;
text-align:center;
}

#noofmarkstd{
min-width:10%;
max-width:10%;
text-align:center;
}

#resulttbl{
min-width:100%;
max-width:100%;
}

最佳答案

请注意,您的 CSS 指的是 #resulttbl。您的脚本正在输出 ID 为 resultbl 的表格,因此 100% 宽度不适用于它。

关于html - 如何保持表格 100% 宽?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10762738/

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