0

我有一个链接 btn,单击它会执行它应该执行的任务。但是,它不会显示为链接 btn,它只是看起来像一段普通的文本。

我已将其缩小到我的 css 文件中的某个位置,该属性的文本装饰设置为无。

然而,有太多的参考资料要逐一阅读以弄清楚它是哪一个。

我可以写一个新的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"/>
4

1 回答 1

1

您可以使用 !Important 标签。看看这篇文章http://webdesign.about.com/od/css/f/blcssfaqimportn.htm

此标签允许您覆盖其他设置。

于 2013-03-04T17:31:54.220 回答