<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>miZine &#187; IE6</title>
	<atom:link href="http://mizine.de/tag/ie6/feed/" rel="self" type="application/rss+xml" />
	<link>http://mizine.de</link>
	<description>Mac, Internet, SEO, eCommerce, Gadgets und Wordpress</description>
	<lastBuildDate>Thu, 24 May 2012 07:26:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<atom:link rel='hub' href='http://mizine.de/?pushpress=hub'/>
		<item>
		<title>IE6 max-width und min-width</title>
		<link>http://mizine.de/html/ie6-max-width-und-min-width/</link>
		<comments>http://mizine.de/html/ie6-max-width-und-min-width/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 16:00:24 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[6]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[max-height]]></category>
		<category><![CDATA[max-width]]></category>
		<category><![CDATA[min]]></category>
		<category><![CDATA[min-height]]></category>
		<category><![CDATA[min-width]]></category>
		<category><![CDATA[Width]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=2752</guid>
		<description><![CDATA[width: expression(this.width > 577 ? 577: true);]]></description>
			<content:encoded><![CDATA[<p>Die sicherste Methode, die ich bisher angewandt habe ist die Einbindung einer Javascript Expression innerhalb der IE6 fix CSS Datei (Mit Conditional Comments speziell dem IE6 zugewiesene CSS Datei).</p>
<pre><code># max-width:577px;
.class img{
  width: expression(this.width &gt; 577 ? 577: true);
}

# min-width:577px;
.class div{
  width: expression(this.width &lt; 577 ? 577: true);
}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/ie6-max-width-und-min-width/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6 Printing CSS</title>
		<link>http://mizine.de/html/ie6-printing-css/</link>
		<comments>http://mizine.de/html/ie6-printing-css/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 09:14:07 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Print]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=2699</guid>
		<description><![CDATA[@media print {    #menu, #logo, #sidebar {display: none; } } via Ease the Pain with IE6 Printing &#8211; IEBlog &#8211; Site Home &#8211; MSDN Blogs.]]></description>
			<content:encoded><![CDATA[<pre><code>@media print {   
   #menu, #logo, #sidebar {display: none; }
}</code></pre>
<p>via <a href='http://blogs.msdn.com/b/ie/archive/2005/06/10/428149.aspx'>Ease the Pain with IE6 Printing &#8211; IEBlog &#8211; Site Home &#8211; MSDN Blogs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/ie6-printing-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Element Transparenz für alle Browser</title>
		<link>http://mizine.de/html/transparenz-browser/</link>
		<comments>http://mizine.de/html/transparenz-browser/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 14:36:43 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[ie5]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[Transparenz]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=2644</guid>
		<description><![CDATA[Element Transparenz für alle Browser: /* ie8 */ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; /* ie 5/7*/ filter:alpha(opacity=60); /* old mozilla browser like netscape */ -moz-opacity:0.6; /* for really really old safari */ -khtml-opacity: 0.6; /* css standard, currently it works in most modern browsers like firefox, */ opacity: 0.8; Falls jQuery bereits eingebunden ist, schauen die Transparenzübergänge mittels jQuery [...]]]></description>
			<content:encoded><![CDATA[<p>Element Transparenz für alle Browser:</p>
<pre><code>/* ie8 */
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";

/* ie  5/7*/
filter:alpha(opacity=60);    

/* old mozilla browser like netscape  */
-moz-opacity:0.6; 

 /* for really really old safari */
-khtml-opacity: 0.6;    

/* css standard, currently it works in most modern browsers like firefox,  */
opacity: 0.8;    </code></pre>
<p>Falls jQuery bereits eingebunden ist, schauen die Transparenzübergänge mittels jQuery aber besser aus.</p>
<pre><code>$('#clickme').click(function() {
    $('#book').fadeTo('slow', 0.5, function() {
      // Animation complete.
    });
  });</code>
</pre>
<p>[<a href="http://api.jquery.com/fadeTo/">jQuery API</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/transparenz-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>min-height für den IE</title>
		<link>http://mizine.de/html/min-height-fur-den-ie/</link>
		<comments>http://mizine.de/html/min-height-fur-den-ie/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 13:18:56 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[min-height]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=1727</guid>
		<description><![CDATA[Wie bekommt man ohne hack die nicht vorhandene min-height CSS- Eigenschaft im IE6? Ganz einfach: .minheight-500 { min-height: 500px; height: auto !important; /* für moderne Browser */ height:500px; /*für den IE */ }]]></description>
			<content:encoded><![CDATA[<p>Wie bekommt man ohne hack die nicht vorhandene min-height CSS- Eigenschaft im IE6?<br />
Ganz einfach:</p>
<pre><code>.minheight-500 {
   min-height: 500px;
   height: auto !important; /* für moderne Browser */
   height:500px;  /*für den IE */
}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/min-height-fur-den-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browserswitch &#8212; zwischen IE und FF unterscheiden</title>
		<link>http://mizine.de/html/browserswitch-zwischen-ie-und-ff-unterscheiden/</link>
		<comments>http://mizine.de/html/browserswitch-zwischen-ie-und-ff-unterscheiden/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 12:55:34 +0000</pubDate>
		<dc:creator>Viktor Dite</dc:creator>
				<category><![CDATA[web-development]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[Weiche]]></category>

		<guid isPermaLink="false">http://mizine.de/?p=817</guid>
		<description><![CDATA[Die Lösung heißt: conditional comments Normal comment: &#60;!&#45;&#45; Comment text &#45;&#45;&#62; Conditional comment: &#60;!&#45;&#45;[If expression]&#62; HTML &#60;![endif]&#45;&#45;&#62; Für den einfachsten Switch bedeutet dies: &#60;!&#45;&#45;[If IE]&#62; HTML &#60;![endif]&#45;&#45;&#62; Hier wird jeder IE (ab v5) den eingeklammerten HTML code ausführen Die umgekehrte Richtung geht leider nur mit einem nicht XHTML validen code, nämlich: &#60;!&#45;&#45;[if !IE]&#62;&#60;!&#45;&#45;&#62; HTML &#60;!&#45;&#45;&#60;![endif]&#45;&#45;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/14678786@N00/3046057117" title="wanted: dead"><img class="colorbox-817"  src="http://farm4.static.flickr.com/3137/3046057117_09db9ee7b1_s.jpg" style="float:left; margin:0 10px 5px 0;" /></a>Die Lösung heißt: <em>conditional comments</em></p>
<p>Normal comment: &lt;!&#45;&#45; Comment text &#45;&#45;&gt;<br />
Conditional comment: &lt;!&#45;&#45;[If <var>expression</var>]&gt; HTML &lt;![endif]&#45;&#45;&gt;</p>
<p>Für den einfachsten Switch bedeutet dies:<br />
&lt;!&#45;&#45;[If IE]&gt; HTML &lt;![endif]&#45;&#45;&gt;<br />
Hier wird jeder IE (ab v5) den eingeklammerten HTML code ausführen</p>
<p>Die umgekehrte Richtung geht leider nur mit einem nicht XHTML validen code, nämlich:<br />
&lt;!&#45;&#45;[if !IE]&gt;<marker>&lt;!&#45;&#45;&gt;</marker> HTML <marker>&lt;!&#45;&#45;</marker>&lt;![endif]&#45;&#45;&gt;</p>
<p>Das Ganze geht auch komplexer:</p>
<ul style="list-style-type:circle">
<li><b>! (negation)</b><br />
Use the negation to select all versions except the one specified, e.g.<br />
<code class="inline">[If !IE 6]</code> will select IE 5, 5.5 and 7.</li>
<li><b>lt (less than)</b><br />
Select any versions less than the one specified, e.g. <code class="inline">[If lt IE 6]</code> will select IE 5 and 5.5.</li>
<li><b>lte (less than or equal)</b><br />
e.g. <code class="inline">[If lte IE 6]</code> will select IE 5, 5.5 and 6.</li>
<li><b>gt (greater than)</b><br />
Select any versions greater than the one specified, e.g. <code class="inline">[If gt IE 6]</code> will select IE 7 (and any later versions that may appear).</li>
<li><b>gte (greater than or equal)</b><br />
e.g. <code class="inline">[If gte IE 6]</code> will select IE 6 and 7 (and later).</li>
</ul>
<p>Für weitere Informationen [<a href="http://www.unintentionallyblank.co.uk/2006/09/19/if-internet-explorer-then-do-something-else-a-how-to/">Quelle</a>]<br />
<span id="more-817"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-5182098267045147";
/* 468x60, Erstellt 21.03.08 */
google_ad_slot = "7792313158";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://mizine.de/html/browserswitch-zwischen-ie-und-ff-unterscheiden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

