Tell me how to remove underlined links (interested in all methods).

    6 answers 6

    a { text-decoration: none } - the most normal way

       css: a { text-decoration:none } 

      And before asking a question - co-allow to use Google ...

        if there is an image in the link then:

         img{ border: 0px; } 
        • one
          and even better: <br> img { border:none; } img { border:none; } - Zowie

        interested in all the ways

         a{ text-decoration: none !important; /*стандарт*/ border-bottom: none !important; /*а вдруг кто-то так подчеркивает*/ background-image: none !important; /*возможно, даже картинкой*/ } 

        While the ideas are over. Who else has something? =)

        • I don’t understand this either: D <br> TS just asked how to remove underscores and not how useful it is in IE FF, etc: D - Zowie

        You can also: a{text-decoration:none!important}

        • here is the priority modifier? - Zowie

        And for links to pictures in FF, useful

         a img { border: none; }