我有一个链接btn,点击后执行它应该执行的任务。然而,它并不像链接那样出现,它只是看起来像一段正常的文字。
我已将其缩小到我的css文件中的某处,该属性的文本修饰设置为无。
然而,有太多的引用要经过每一个来弄清楚它是什么。
我可以写一个新的css,它会覆盖前一个吗?
我的尝试是:
a.linkBtn {
text-decoration: underline;
color: blue
}
<asp:Repeater id="rptChecklistRecords" runat="server">
<HeaderTemplate>
<table class="detailstable FadeOutOnEdit">
<tr>
<th style="width:200px;">Title</th>
<th style="width:200px;">Timestamp</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<th style="width:200px;">
<asp:LinkButton id="linkBtn" CssClass="linkBtn" runat="server" Text='<%# Eval("Title") %>' OnCommand="LoadCheckListRecordEntry"/>
</th>
<th style="width:200px;"><%# Eval("Timestamp") %></th>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
我的代码是:
<asp:LinkButton id="linkBtn" CssClass="linkBtn" runat="server" Text='<%# Eval("Title") %>' OnCommand="LoadCheckListRecordEntry"/>
答案 0 :(得分:1)
您可以使用!重要标记。请看这篇文章http://webdesign.about.com/od/css/f/blcssfaqimportn.htm。
此标记允许您覆盖其他设置。