Jump to content

Vertical Alignment in IE off, perfect in FF


cgm225

Recommended Posts

Thankfully IE has conditional CSS (and only IE). You can implement it like this:

 

<!--[if IE]>
<style>
.class_name
{

}
</style>
<![endif]-->

 

You can use that to override the positioning. This goes in the <head> section after any other CSS.

Link to comment
Share on other sites

Any non-hack options?

 

Conditional comments (which is what jordanwb showed you) aren't hacks, they are just comments. IE however, has been set to read these comments as if they were code.

 

In this case, they are your only choice. In other cases, there are ways around using them, such as using padding on a parent element rather than margins on a child element. But such is not the case this time.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.