我遇到一個問題,我無法獲取格式化我想要的格式的摘要。CSS類屬性不覆蓋ASP
我已經把CSS類放在與aspx文件相同的redgex摘要中,並將它們標記爲重要的。但是,當我運行它時,它沒有被使用。
更新
在Chrome的檢查元素它說,redgex總結風格是紅色的。 HedderText顯示爲紅色,它似乎是不符合要求的列表項,但我不知道它們爲什麼不覆蓋默認值。
任何想法?
瀏覽器顯示它沒有被使用,但不知道爲什麼:CSS
:
.valError {
color:red !important;
}
.validation_summary {
color:red !important;
}
ASP Redgex摘要:應用
<asp:ValidationSummary ID="ValidationSummary1"
runat="server"
ShowMessageBox="false"
ShowSummary="true"
ValidationGroup="v1"
ForeColor="Red"
DisplayMode="BulletList"
CssClass="valError"
HeaderText="<span>The below requires attention.</span>"/>
如何從aspx組件中查看生成的html源代碼? – reporter 2014-09-24 11:26:24
根據Chrome的檢測元素,這是說總結風格是紅色的。 HedderText顯示爲紅色,它似乎是不符合要求的列表項,但我不知道它們爲什麼不覆蓋默認值。 – SelrekJohn 2014-09-24 11:28:54