vote up 1 vote down star

I have used background image and css border to a button. It looks good in Firefox but IE does not show it correctly. The top border is not aligned with left, right borders in IE. How to correct it in IE? Below links for your reference.

Screen shot IE
Selector
Screen shot Firefox

flag

76% accept rate
Is it only a problem in FF 2? Can you try FF3? – StingyJack Dec 24 '08 at 13:08

6 Answers

vote up 4 vote down check

This http://particletree.com/features/rediscovering-the-button-element/ might help you if it's just the button that is acting weird, but it looks like the text on the tabs is also bold in firefox, and not in IE - so you might have another css part that messes things up.

To check your styles in Firefox use the firebug extension: http://getfirebug.com/ To check them in IE use the Internet Explorer Developer Toolbar: http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en

link|flag
Or get IE8 - It has many of the same features as FF/FB – StingyJack Dec 24 '08 at 12:59
Ah, good to know. (I'm mostly developing on osx, so my IE knowledge is not the most up-to-date) – Simon Groenewolt Dec 24 '08 at 13:38
vote up 0 vote down

Does it look right if you set the windoes theme to "classic" (so the task bar looks more like windows 2000, rather than the cartoony look with the green start button and blue task bar)?

If so, try adding this to the of the document:

<meta http-equiv="msthemecompatible" content="no">

This will tell IE to not force it's theme on your content, so it can instead use your CSS.

Also, see: http://msdn.microsoft.com/en-us/library/bb773175(VS.85).aspx#html

link|flag
kudos for the meta tag info - I wasn't aware of this one! – scunliffe Dec 24 '08 at 19:30
vote up 0 vote down

I'll bet it looks really odd in safari. =)

It looks like FF/IE have the different fonts available to them. Check here with each browser to see if the font you are using is available in both browsers.

Try also nesting the button in another control and then putting the border around the wrapping control.

If you really really want consistent look, then make it "JUST" an image button. The text "Login" and no border, etc.

link|flag
Please check the attached style class(Selector) and the IE image(Screen shot IE). The top border is not aligned with left, right borders in IE – Shivanand Dec 26 '08 at 8:58
I did. You are setting the border for a button. Wrap the button in a div and set the border on the div. – StingyJack Dec 26 '08 at 15:28
vote up 0 vote down

Assuming you are using a doctype the following should get it done

CSS:

#conText input.button
{
    padding:5px;
    background: url("/images/button.png");
    color:#000;
    font-weight:bold;
    border:none;
}

HTML

<input type="button" Value="Button" class="button" />
link|flag
Please check the attached style class(Selector) and the IE image(Screen shot IE). The top boder is not aligned with left, right borders in IE. – Shivanand Dec 26 '08 at 8:56
vote up 0 vote down

I am giving the link to the html file. See the page in Internet Explorer. Check the buttons "Login" and "Go". The top border is not aligned with left, right borders in IE. This is happening in IE only. Firefox has no issues.
html page.

link|flag
vote up 0 vote down

I'm receiving an error getting at your files Shiv, could you post your code (at minimum the relevant code) so we can nail this down for you :) ?

Also check out a few other browsers (Chrome, Safari, and Opera for example)... if it works fine in all these as well as FFX then it is a IE CSS issue. Which version IE are you running as well??

Thanks!

link|flag

Your Answer

Get an OpenID
or

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