up vote 19 down vote favorite
8
share [g+] share [fb]

I am currently styling an <input type='button'/> element with the following CSS:

background: transparent url(someimage);
color: transparent;

I want the button to show as an image, but I don't want the value text to display on top of it. This works fine for Firefox as expected. However, on Internet Explorer 6 and Internet Explorer 7 I can still see the text.

I have tried all sorts of tricks to hide the text, but without success. Is there a solution to make Internet Explorer behave?

(I am constrained to use type=button because this is a Drupal form and its form API doesn't support image-type.)

link|improve this question

59% accept rate
I had the same issue and tried all of the 11 answers, and found out that these hacks (text-indent, and padding-left) only fix inputs that have a type="submit", so i had to change from type="image". Anyway thanks – adardesign Jul 15 '10 at 18:07
feedback

14 Answers

up vote 5 down vote accepted

Why are you including the value attribute at all? From memory, you don't need to specify it (although HTML standards may say you do - not sure). If you do need a value attribute, why not just state value=""?

If you do take this approach, your CSS will need additional properties for the height and width of the background image.

link|improve this answer
1  
head smack -- Alright - this actually works for me .. and I'd already been setting width and height . so tnx ! – Scott Evernden Mar 1 '09 at 20:57
15  
It should be noted that this makes the button entirely useless for sight-impaired users. – ceejayoz Mar 1 '09 at 23:16
2  
That's actually a very valid point. You could work around this by adding a title and alt attribute to the button, couldn't you? – Phil.Wheeler Mar 1 '09 at 23:28
7  
This is very poor for accessibility. You should consider marking a different answer correct. – American Yak Nov 30 '10 at 17:28
2  
I agree this isn't good for accessibility and it is worth noting that you should use this with caution BUT that was not part of the question. This answer solves the problem effectively. I am willing to bet that most websites being discussed here aren't even internationalized properly for other languages, let alone taking into account screen readers for the sight-impaired. ;) – Jesse Webb Apr 5 '11 at 22:00
show 1 more comment
feedback

I had the opposite problem (worked in Internet Explorer, but not in Firefox). For Internet Explorer, you need to add left padding, and for Firefox, you need to add transparent color. So here is our combined solution for a 16px x 16px icon button:

input.iconButton
{
    font-size: 1em;
    color: transparent; /* Fix for Firefox */
    border-style: none;
    border-width: 0;
    padding: 0 0 0 16px !important; /* Fix for Internet Explorer */
    text-align: left;
    width: 16px;
    height: 16px;
    line-height: 1 !important;
    background: transparent url(../images/button.gif) no-repeat scroll 0 0;
    overflow: hidden;
    cursor: pointer;
}
link|improve this answer
This doesn't work for me in IE7. – Cerin Oct 29 '10 at 19:27
feedback

I use

button {text-indent:-9999px;}
* html button{font-size:0;display:block;line-height:0}  /* ie6 */
*+html button{font-size:0;display:block;line-height:0}  /* ie7 */
link|improve this answer
2  
+1 line-height:0 did the trick for me in IE. Thanks. – Liam May 7 '10 at 19:28
this is perfect. – Jason May 16 '11 at 21:03
feedback

Have you tried setting the text-indent property to something like -999em? That's a good way to 'hide' text.

Or you can set the font-size to 0, which would work too.

http://www.productivedreams.com/ie-not-intepreting-text-indent-on-submit-buttons/

link|improve this answer
yes i tried this and the buttons disappeared .. font-size = 0 still shows a dot – Scott Evernden Mar 1 '09 at 20:48
text-indentation doesn't work in IE 7 and older - whole button gets indented, not only text – zappan Apr 27 '10 at 14:25
feedback

well:

font-size: 0; line-height: 0;

work awesome for me!

link|improve this answer
Nice one! This seems like the least disruptive workaround for IE. – Tobias Cohen Oct 15 '10 at 6:14
feedback

overflow:hidden and padding-left are working fine for me.

For Firefox:

width:12px;
height:20px;
background-image:url(images/arrow.gif);
color:transparent;
overflow:hidden;
border:0;

For the IEs:

padding-left:1000px;
link|improve this answer
feedback

This works in Firefox 3, Internet Explorer 8, Internet Explorer 8 compatibility mode, Opera, and Safari.

*Note: table cell containing this has padding:0 and text-align:center.

background: none;
background-image: url(../images/image.gif);
background-repeat:no-repeat;
overflow:hidden;
border: NONE;
width: 41px; /*width of image*/
height: 19px; /*height of image*/
font-size: 0;
padding: 0 0 0 41px;
cursor:pointer;
link|improve this answer
feedback

The difference some of you are seeing in solutions that work or not in the different IEs may be due to having compatibility mode on or off. In IE8, text-indent works just fine unless compatibility mode is turned on. If compatibility mode is on, then font-size and line-height do the trick but can mess up Firefox's display.

So we can use a css hack to let firefox ignore our ie rule.. like so...

  text-indent:-9999px;
  *font-size: 0px; line-height: 0;
link|improve this answer
feedback

color:transparent; and then any text-transform property does the trick too.

so

color: transparent; text-transform: uppercase;

link|improve this answer
feedback

color:transparent; -- For FF
*padding-left:1000px ; --- FOR IE6,IE7

Thanks

link|improve this answer
feedback

Applying "font-size: 0.1px;" to the button works for me in Firefox, Internet Explorer E6, Internet Explorer 7, and Safari. None of the other solutions I've found worked across all of the browsers.

link|improve this answer
feedback

I had the very same problem. And as many other posts reported: the padding trick only works for IE.

font-size:0px still shows some small dots.

The only thing that worked for me is doing the opposite:

font-size:999px

(But I only had buttons of 25x25 pix)

link|improve this answer
feedback

Use conditional statements at the top of the HTML document:

<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>    <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>    <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->

Then in the CSS add

.ie7 button { font-size:0;display:block;line-height:0 }

Taken from HTML5 Boilerplate - more specifically paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/

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.