TechieDrill Your World Of Technical Tutorials

Archive for the ‘CSS’ Category

How to get Text Link With Mouseover Colored Text?

11.10.2009 · Posted in CSS

To get the Text Link With Mouseover Colored Text you have to do is just simply add the CSS code as shown. <style type=”text/css”> <!– A:hover { color: #000 } –> </style> The CSS code is to beĀ  added in the Head section of your script. Say for Eg: <html> <head> <title>Text Link With Mouseover Colored Text</title> <style type=”text/css”> <!– A:hover { color: #000 } –> </style> </head> <body> <center> <a href=”Url here”><b>Text ...

How to add Background Color Highlight in Text Link?

11.10.2009 · Posted in CSS

You can add Background Color Highlight in the Text Link by using the CSS code A:hover { color: some color; background-color: some color; } You have to add the CSS code to your script in the Head section <style type=”text/css”> <!– A:hover { color:#000; background-color:#F00; } –> </style> By adding the CSS code you can add Background Color Highlight in Text Link. Say for ...