Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5846125
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:31:57+00:00 2026-05-22T12:31:57+00:00

I’ve read at length about issues with IE disabling ClearType when using filters, and

  • 0

I’ve read at length about issues with IE disabling ClearType when using filters, and I’m hoping that my conclusions are wrong. It seems that it is impossible to turn ClearType back on after applying a filter (e.g. Shadow or Alpha). Is that so?

With every other browser supporting text-shadow now I’d really like to be able to use it, falling back on IE’s Shadow or DropShadow filter when necessary. But applying any filter to text makes it look terrible.

Is there a way to enable both ClearType and filters in Internet Explorer?

Some sources:

  • http://blogs.msdn.com/b/ie/archive/2006/08/31/730887.aspx
  • IE is losing ClearType
  • Correcting IE Cleartype/Filter Problem when Animating Opacity of Text with jQuery
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T12:31:58+00:00Added an answer on May 22, 2026 at 12:31 pm

    Is there a way to enable both ClearType and filters in Internet Explorer?

    No. Filters came before ClearType support in Internet Explorer and were never designed to work with partial transparency. The issue in the blog post you linked to was never fixed and, with CSS3 improvements in the latest browsers, the future’s bleak for filters.

    There are some tricks you can use to approximate text-shadow in Internet Explorer, however. The varying approaches involve positioning a copy of the element directly below, containing the same text but applying the Blur or Shadow filters.

    Double-markup method, works for IE 6-9

    Assuming you’re applying the shadow in moderation, for example to a section title or photo caption, you can duplicate the text into two separate elements and position one at the back, blurring it with a filter:

    <h1><span class=".shadow">Fear my shadow!</span><span>Fear my shadow</span></h1>
    
    body { background-color: lightgreen; }
    h1 {
        color: white;
        font-family: Helvetica,Arial,sans-serif;
        font-weight: bold;
        font-size: 1.2em;
        text-shadow: #333 2px 2px 3px;
        padding-bottom:2px;
    }
    .shadow { display: none; } /* For non-IE browsers */
    .ie > h1 > span {
        position: absolute;
        color: white;
    }
    .ie > h1 > span.shadow { 
        display: inline-block;
        zoom: 1;
        color: #333;
        filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2);
    }
    

    Working example: http://jsfiddle.net/PdZxB/

    For IE6, you need to omit the direct-descendant selector >. It doesn’t look so great in IE 6, though.


    Easy method — using :before and attr()

    By far the easiest approach is the one that requires no JavaScript, but works only in IE 8 and IE 9 because it relies on the :before pseudo-class and CSS attr() function. It does require targeting CSS towards specific versions of IE, though.

    h1 {
        color: white;
        font-family: Helvetica,Arial,sans-serif;
        font-weight: bold;
        font-size: 1.2em;
        text-shadow: #333 2px 2px 3px;
        padding-bottom:2px;
    }
    .ie8and9 > h1 {
        zoom: 1; /* make element have layout */
        color: #333;
        filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2);
    }
    .ie8and9 > h1:before {
        position: absolute;
        color: white;
        content: attr(data-innertext);
    }
    

    Working example: http://jsfiddle.net/zFYga/

    A step-by-step guide to this method is located at http://www.useragentman.com/blog/2011/04/23/css-blurred-text-shadow-in-ie-part-i/.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm looking for suggestions for debugging... If you view this site in Firefox or
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.