Learn html,php,javascript,computer and software fixes, css fixes, website designing,phpbb, computer troubleshooting, hosting




HOW TO REMOVE LINK BORDERS IN IMAGES IN IE


Now this might not have happened to a lot of people but i’m very sure that it must have happened to most people developing sites using CSS and HTML. Okay let us identify the problem first, when you have used images as links to certia urls or any url you would find out that it will appear very well just like you want it in FF but in IE the images would be surronded by borders which makes it look ugly or odd in the page.

To remove these just go back to your CSS file or your CSS syntax and add this;

img

{

border:0;

}

and thats it, your borders IE browser will dissappear.

For further clarifications you can comment .

NOTE: You can also get around these by using the class attribute in CSS, you can create different psuedo classes and assign them to different links.

Leave a Reply