gpt4 book ai didi

html - 使用 CSS 为通过 JSTL 检索的数据提供不同的字体大小和颜色

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

我正在开发一个 Web 应用程序,我在其中使用 Java Servlet 获取一些字符串数据,然后随后使用 JSTL 在 JSP View 上显示该数据。下面是代码片段:

    <table border="1" width=100%>
<th style="width: 10%">S. NUMBER</th>
<th style="width:35%"> First Name </th>
<th style="width: 35%"> Second Name </th>
<th style="width: 10%">Student ID</th>
<th style="width: 10%">Student Class</th>
<c:forEach items="${sortedResults}" var="result">
<tr>
<td>${result.counter}</td>
<td>${result.sequenceIntEx}</td>
<td>${result.lName}</td>
<td>${result.sID}</td>
<td>${result.sClass}</td>
</tr>
</c:forEach>

例如,lName 字段,我想用不同的颜色以更大的字体显示第 3 个和第 4 个字符。有什么想法吗?

最佳答案

也许分配系统元素名称 ex。 id="td1"id="td2"等,然后使用 jsp 生成与自动元素名称匹配的 css 文件,并根据您的条件填写所需的任何参数。

关于html - 使用 CSS 为通过 JSTL 检索的数据提供不同的字体大小和颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20113118/

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