I am trying to get rid of the thin border that appears for every image in CHrome & IE9. Thru CSS, I set outline: none; border: none; Using jQuery, I also added the border=0 attribute for every image tag. But the border as shown in the image still appears. Any solution?

Attaching a HTML snippet and the CSS stack from Chrome Dev for that img

<h1>Dashboard 
<span class="help-inline icon_help ui-corner-all ichack"><img class="ui-icon ui-icon-help  icon ui-icon-blue" border="0"></span>
</h1>

img[border=0] {
border-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
element.style {
}
Matched CSS Rules
content.css:159
.icon {
margin-right: 2px;
display: inline-block;
position: relative;
top: 3px;
}
common.css:236
.ui-icon-blue {
background-image: url(theme/images/ui-icons_0078ae_256x240.png);
}
common.css:234
.ui-icon-blue, .ui-icon-yellow, .ui-icon-orange, .ui-icon-green, .ui-icon-white, .ui-icon-red {
height: 16px;
width: 16px;
}
common.css:230
.ui-icon {
background-image: url(theme/images/ui-icons_4eb305_256x240.png);
}
jquery-ui-1.8.2.custom.css:216
.ui-icon-help {
background-position: -48px -144px;
}
jquery-ui-1.8.2.custom.css:83
.ui-icon {
width: 16px;
height: 16px;
background-image: url(images/ui-icons_808080_256x240.png);
}
jquery-ui-1.8.2.custom.css:30
.ui-icon {
display: block;
text-indent: -99999px;
overflow: hidden;
background-repeat: no-repeat;
}
content.css:29
img, a img {
outline: none;
border: none;
}
common.css:27
img, a img {
outline: none;
border: none;
}
Inherited from span.help-inline.icon_help.ui-corner-all.ichack
common.css:325
.help-inline {
font-size: small;
}
Inherited from h1
content.css:70
.content h1 {
font-size: 18px;
line-height: 32px;
color: black;
}
user agent stylesheet
h1 {
font-size: 2em;
font-weight: bold;
}
Inherited from table#content-table
user agent stylesheet
table {
border-collapse: separate;
border-spacing: 2px;
}
Inherited from div#content
content.css:39
#content {
font-size: 10pt;
}
Inherited from body
Style Attribute {
font-size: 100%;
}
content.css:17
body {
font: 10px "segoe ui",Verdana,Arial,sans-serif, "Trebuchet MS", "Lucida Grande", Lucida, sans-serif;
}
common.css:15
body {
font: 10px "segoe ui",Verdana,Arial,sans-serif, "Trebuchet MS", "Lucida Grande", Lucida, sans-serif;
}

See attached screenshot:

Screenshot

link|improve this question

1  
"But the border as shown in the image still appears." Is there a screenshot? – Marcel May 16 '11 at 7:51
I'm not entirely sure I see the actual issue. Your screen shot shows some dashes under the word Dashboard, but those dashes look an awful lot like they are actually part of the icon you are displaying. If that's true, CSS/Javascript/Whatever isn't going to help. You'll need to modify the actual image. – Chris Lively Feb 10 at 22:55
feedback

4 Answers

up vote 4 down vote accepted

Instead of border:none; or border:0; in your css you should have

border-style:none;

You could also put this in the image tag like so

<img src="blah" style="border-style:none;">

Either will work.

link|improve this answer
feedback

Add attribute border="0" in the img tag

link|improve this answer
Thanks. But I am already doing that using jQuery. Pl see the second line of the code snippet, where the img tag already has a border="0" attribute – Prasad May 17 '11 at 14:32
feedback

In your img src tag, add a border="0", for example, <img src="img.jpg" border="0"> as per explained by @Amareswar above

link|improve this answer
Thanks. But I am already doing that using jQuery. Pl see the second line of the code snippet, where the img tag already has a border="0" attribute – Prasad May 17 '11 at 14:33
Add attribute inline – Amareswar May 18 '11 at 3:01
Thanks Amareswar. This is what you mean right? <img class="ui-icon ui-icon-help icon ui-icon-blue" border="0"> Do I need to close the image tag or something? – Prasad May 24 '11 at 15:13
feedback

using border="0" is an affective way, but you will need to add this attribute for each image.

i used the following jQuery to add this attribute for each image as i hate this outlines and borders around images.

$(document).ready(function () {
        $('img').each(function () {
            $(this).attr("border", "0");
        });
    });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.