我有<s:form>
,ID为searchbox
。
<s:form action="search" id="searchbox" method="post">
<s:textfield name="query" placeholder="Enter movie title..." cssClass="searchfield" />
<s:submit type="image" src="images/btn_search.gif" />
</s:form>
虽然我已经看到使用.errorMessage
全局更改fielderror风格的答案,但我想将{em>仅更改为searchbox
表单并保留{{1其余的风格。
到目前为止,这是我的CSS:
<s:head />
不幸的是,fielderror更改没有生效(#searchbox {
color: #2e0854;
font-family: tahoma;
font-size: 12px;
font-weight: normal;
}
.searchfield {
width: 161px;
}
没问题。)
答案 0 :(得分:2)
您需要按以下方式定位:
#searchbox .searchfield {
/* your styles here */
}
在上面的示例中,只会对.searchfield
下的#searchbox
进行样式设置。