Putting an image inside a link adds a border to it. This is usually done to visually indicate to the user that this image is a link. Check this example:
<body>
<a href="http://www.dotnetcurry.com">
<img alt="progress" src="images/abc.jpg" />
</a>
</body>
If you have a requirement to override this behavior, then here’s how to do so:
<style type="text/css">
img
{
border-style: none;
}
</style>
Now when you view the same image, it is displayed without a border
Bookmark this link on del.icio.us (saved by 0 users)
Did you like this post?
|
|
|
||
|
|
|
|
|
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |





comments
0 Responses to "Remove Border Around Images using CSS"Post a Comment