TechieDrill Your World Of Technical Tutorials

Posts Tagged ‘CSS’

How to get rid of the underline links using CSS?

11.10.2009 · Posted in CSS

You can easily get rid of the underline in the links you are providing in your scripts using CSS. You have to add the CSS code to your script in the Head section <style type=”text/css”> <!– A:link {text-decoration: none} A:visited {text-decoration: none} –> </style> By adding the CSS code you can avoid the underline in your links. Say for Eg: <html> <head> <title>Link without underline using ...