Remove underline from link

Sandeepraturi
Posted by Sandeepraturi under CSS 3 category on | Points: 40 | Views : 2175
------------put this in head tag--------------------

<style type="text/css">
a {text-decoration: none
}
</style>

--------------put this in body tag--------------

<div>
<asp:Label ID="lb" runat="server" ForeColor="#6699FF" ></asp:Label> <a href="pagename.aspx" style="text-decoration: none; ">logout</a>
</div>

Comments or Responses

Login to post response