T
TJO
There seems to be a major problem using css style filter:
alpha(opacity=100) on a div tag when ClearType is active.
I found this cool utility by MS to sharpen the text on my LCD screen
http://www.microsoft.com/typography/cleartype/tuner/Step1.aspx
It works great until you start writing web pages and apply css "filter:
alpha(opacity=100);"
<div id="mydiv" style="width:100%; height:auto; filter:
alpha(opacity=100);-moz-opacity:100;">
<label for="Text1">my text bla</label>
<input id="Button3" type="button" value="button" />
</div>
Once I remove the ClearType the page text and button render properly.
Is there a work around for this or some other technique I need?
alpha(opacity=100) on a div tag when ClearType is active.
I found this cool utility by MS to sharpen the text on my LCD screen
http://www.microsoft.com/typography/cleartype/tuner/Step1.aspx
It works great until you start writing web pages and apply css "filter:
alpha(opacity=100);"
<div id="mydiv" style="width:100%; height:auto; filter:
alpha(opacity=100);-moz-opacity:100;">
<label for="Text1">my text bla</label>
<input id="Button3" type="button" value="button" />
</div>
Once I remove the ClearType the page text and button render properly.
Is there a work around for this or some other technique I need?