<?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>Fatih Hayrioğlu&#039;nun not defteri &#187; ie8-fix</title>
	<atom:link href="http://www.fatihhayrioglu.com/tag/ie8-fix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fatihhayrioglu.com</link>
	<description>{ CSS, HTML ve Javascript }</description>
	<lastBuildDate>Wed, 01 Sep 2010 12:45:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=2010</generator>
		<item>
		<title>IE 8 için CSS Düzeltmesi(Hack)</title>
		<link>http://www.fatihhayrioglu.com/ie-8-icin-css-duzeltmesihack/</link>
		<comments>http://www.fatihhayrioglu.com/ie-8-icin-css-duzeltmesihack/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:58:06 +0000</pubDate>
		<dc:creator>fatih.hayrioglu</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[css-düzelmesi]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[ie8-fix]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[İnternet Tarayıcısı]]></category>

		<guid isPermaLink="false">http://www.fatihhayrioglu.com/?p=1146</guid>
		<description><![CDATA[İnternet Explorer 8 çıktı ve hızla yayılıyor. Sitemi ziyaret edenlerin %5&#8242;i İnternet Explorer 8 kullanıcısı imiş. Bir makalede görmüştüm. İnternet Explorer 8&#8242;in hızlı yayılması ile alakalı. Burada ie8&#8242;de css düzeltmesi yapmamız gerektiğinde nasıl bir yol izleyeceğimiz konusunda bir ipucu vereceğim. .uyari { color /*\**/: red\9 } Bir çok yerde bu kodun tek başına ie8 için [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/ie8.jpg" alt="ie8" width="192" height="32" align="right" />İnternet Explorer 8 çıktı ve hızla yayılıyor. Sitemi ziyaret edenlerin  %5&#8242;i İnternet Explorer 8 kullanıcısı imiş. Bir makalede görmüştüm.  İnternet Explorer 8&#8242;in hızlı yayılması ile alakalı. </p>
<p>Burada ie8&#8242;de css düzeltmesi yapmamız gerektiğinde nasıl bir yol izleyeceğimiz konusunda bir ipucu vereceğim. </p>
<pre class="brush: css;">
	.uyari { color /*\**/: red\9 }
</pre>
<p>Bir çok yerde bu kodun tek başına ie8 için yeterli olduğu yazıyor. Ama ben test ettiğimde ie7&#8242;de bu kodu görüyor. Bunun için </p>
<pre class="brush: css;">
    .uyari{color:blue} /* tum taricilar */
    .uyari { color /*\**/: red\9 } /* ie8 ve ie 7 */
    *+html .uyari{color:blue} /* ie 7 */
</pre>
<p>Şeklinde bir çözüm işimize yaracaktır.</p>
<p>Örneği görmek için <a href="/dokumanlar/ie8_css_duzeltmesi.html">tıklayınız.</a></p>
<p>Ayrıca şartlı yorumlar yardımı ile de yapabiliriz.</p>
<pre class="brush: xml;">
&lt;!–[if gte IE 8]&gt;
	&lt;style type=&quot;text/css&quot;&gt;
	.uyari {
		color: red;
	}
    &lt;/style&gt;
&lt;![endif]–&gt;
</pre>
<p>Ayrıca daha önce bahsettiğimiz ie7 gibi yorumlama kodu var.</p>
<pre class="brush: xml;">&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=EmulateIE7&quot; /&gt;</pre>
<p>Testlerimi <a title="ietester" href="http://www.my-debugbar.com/wiki/IETester/HomePage" id="mpxi">ietester</a> ile yaptım.</p>
<ul>
<li><a title="http://paulirish.com/2009/browser-specific-css-hacks/" href="http://paulirish.com/2009/browser-specific-css-hacks/">http://paulirish.com/2009/browser-specific-css-hacks/</a></li>
<li><a title="http://acidmartin.wordpress.com/2009/06/04/css-hack-for-internet-explorer-8/" href="http://acidmartin.wordpress.com/2009/06/04/css-hack-for-internet-explorer-8/">http://acidmartin.wordpress.com/2009/06/04/css-hack-for-internet-explorer-8/</a></li>
<li><a title="http://snipplr.com/view/15167/ie8-csshacks/" href="http://snipplr.com/view/15167/ie8-csshacks/">http://snipplr.com/view/15167/ie8-csshacks/</a></li>
<li><a title="http://www.evotech.net/blog/2009/03/ie8-css-support/" href="http://www.evotech.net/blog/2009/03/ie8-css-support/">http://www.evotech.net/blog/2009/03/ie8-css-support/</a></li>
<li><a title="http://www.fatihhayrioglu.com/internet-explorer-8i-7-gibi-yorumla-kodu/" href="http://www.fatihhayrioglu.com/internet-explorer-8i-7-gibi-yorumla-kodu/">http://www.fatihhayrioglu.com/internet-explorer-8i-7-gibi-yorumla-kodu/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fatihhayrioglu.com/ie-8-icin-css-duzeltmesihack/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.378 seconds -->
