我正在研究Struts程序,并在其中一个JSP页面中遇到html
标记,其中包含styleClass
属性。
所以,它看起来像:
<html:text name = "XXX" property="YYY" styleClass="ZZZ" ...
我试图寻找ZZZ.css
但不存在。谁能告诉我styleClass
是如何运作的?是否在某个特定文件中定义了ZZZ
?
答案 0 :(得分:1)
它不是文件,而是html类属性。
等效代码为:
<input type="text" class="ZZZ" />
答案 1 :(得分:0)
styleClass
的工作方式与HTML中的class
属性相同。
CSS规则可以使用<style type="text/css">
放在同一文档中,也可以放在链接文档中,如
<link rel="stylesheet" type="text/css" href="<html:rewrite page='/css/ZZZ.css'/>">
答案 2 :(得分:0)
在页面中查找css
个文件,styleClass
ZZZ..
应该是css
个选择器之一。
请参阅html:text代码文档
来自文档:
CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).