gpt4 book ai didi

html:有没有办法在html代码中包含滚动条

转载 作者:太空宇宙 更新时间:2023-11-03 21:57:54 26 4
gpt4 key购买 nike

我必须在下面的 html 代码中包含一个滚动条。代码如下 -->

 <html>
<head></head>
<body>
<div style="overflow:scroll;height:100px;scrollbar-shadow-color: #2D2C4D;scrollbar-highlight-color:#7D7E94;scrollbar-face-color: #000000;scrollbar-3dlight-color:#7D7E94;">
<table width="100%" style="border-collapse:collapse;overflow:scroll;height:10px">
<tr>
<% dim CountFlg
CountFlg = 0
for i=0 to XmlNodes.length-1
if CountFlg <= 2 then %>
<td>
<b><%=XmlNodes.item(i).getAttribute("xx")%></b>
</td>
<TD>
<input class="TextArea" name="<% xx % >" id="<% xx %>" style="height:35px;overflow:auto;padding-left:80px;" rows="5"cols="10"> </input>
</TD>
<% CountFlg=CountFlg+1
end if
next%>
</tr>
</table>
</div>
</body>
</html>

因为我在这里有一个 for 循环,所以我不知道我会得到多少标签。所以我想为我的标签放一个滚动条。怎么做?有没有办法可以放置 if conition for div在这里标记,比如如果 XmlNodes.length>8 则包含 div 标记,否则不需要 div 标记。如何做到这一点。?

最佳答案

您必须将您的表格包含在 div 中,并使该 div overflow:scroll ,如下所示:

<div style="overflow:scroll; height:300px">
<table> // your table
</table> // goes here
</div>

关于html:有没有办法在html代码中包含滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12596604/

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