text links and underscores on edge

0

Hello, I'm editing some pages in C #, and I have a validation page where some radiobutton options with the data for confirmation will be listed. The problem is that when CPF numbers are listed they get linked and underlined in Edge.

I've already used text-decoration:none; in all tags but only works on one of the radiobuttons.

Here's a picture:

Followthecodebelow:

<section><divclass=" container opcoes2">
     <table style="color:#464a51; text-decoration:none;">
        <tr >
          <td style="text-align:left; color:#464a51;text-decoration:none;" ><asp:RadioButton runat="server" ID="rdOpcao1" GroupName="Opcao" ForeColor="#464a51" Font-Size="14" style="text-decoration:none;"/></td>

</tr>

   <tr>
      <td style="text-align:left; color:#464a51;text-decoration:none;" "><asp:RadioButton runat="server" ID="rdOpcao2" GroupName="Opcao" ForeColor="#464a51" Font-Size="14" style="text-decoration:none;" /></td>

</tr>

   <tr>

      <td style="text-align:left; color:#464a51;text-decoration:none;"><asp:RadioButton runat="server" ID="rdOpcao3" GroupName="Opcao" ForeColor="#464a51" Font-Size="14" style="text-decoration:none;" /></td>

</tr>

     <tr>

        <td style="text-align:left; color:#464a51;text-decoration:none;"><asp:RadioButton runat="server" ID="rdOpcao4" GroupName="Opcao" ForeColor="#464a51" Font-Size="14" style="text-decoration:none;" /></td>

</tr>

</table>

</asp:PlaceHolder>

</div><!--opcoes-->                  
</section>
    
asked by anonymous 07.02.2018 / 13:18

1 answer

0

Camila, as mentioned above, you need to know where these texts are written to then get the class / id and declare the rule in css. Possibly it is coming within a link, do the following in the css: .opcoes2 table a { text-decoration: none;} and see the result.

    
07.02.2018 / 14:10