这是验证输入字段:
<input class="descInput validate[required]" data-errormessage="*Please enter 0 or integers greater
than 4" data-prompt-position="topRight:-1,-1;" id="fixedPrice" name="fixedPrice" /></span>
错误消息(请输入...)正在包装。我不想包装红色错误消息。我知道它使用clases .formError .formErrorContent。最小宽度样式将如何被覆盖?
每个字段的修饰语和宽度将有所不同
width: 100%;
background: #B7110D;
position: relative;
color: #fff;
min-width: 120px;
font-size: 11px;
border: none;
font-family: Verdana;
box-shadow: 0 0 6px #000;
-moz-box-shadow: 0 0 6px #000;
-webkit-box-shadow: 0 0 6px #000;
-o-box-shadow: 0 0 6px #000;
padding: 2px 10px 2px 10px;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
added class to label
<label class="cssFixedpriceError">
.cssFixedAmtError .formError .formErrorContent {
min-width: 420px;
}