<?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; border-collapse</title>
	<atom:link href="http://www.fatihhayrioglu.com/tag/border-collapse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fatihhayrioglu.com</link>
	<description>{ CSS, HTML ve Javascript }</description>
	<lastBuildDate>Thu, 09 Feb 2012 08:44:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=2012</generator>
		<item>
		<title>Tablo Özellikleri</title>
		<link>http://www.fatihhayrioglu.com/tablo-ozellikleri/</link>
		<comments>http://www.fatihhayrioglu.com/tablo-ozellikleri/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 20:00:15 +0000</pubDate>
		<dc:creator>fatih.hayrioglu</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Standartları]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[boder-spacing]]></category>
		<category><![CDATA[border-collapse]]></category>
		<category><![CDATA[caption-side]]></category>
		<category><![CDATA[empty-cells]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[table-layout]]></category>
		<category><![CDATA[tablo]]></category>

		<guid isPermaLink="false">http://www.fatihhayrioglu.com/?p=395</guid>
		<description><![CDATA[Daha önce &#34;CSS ile Tabloları şekillendirmek&#34; adlı makalemizde tablo yapılarını gördük ve görünümünü daha güzel nasıl yaparız onun üzerinde durmuştuk. W3C bu durumu göz önünde bulundurarak tablo ve tablo elementlerinin görünümünü düzenlemek için tablo özellikleri ekledi. Tablolar diğer HTML elementlerinden daha farklı kendine has elementlerdir ve farklı özellikleri vardır. Burada CSS2 ile birlikte gelen yeni [...]]]></description>
			<content:encoded><![CDATA[<p>Daha önce &quot;<a href="http://www.fatihhayrioglu.com/css-ile-tablolari-sekillendirmek/">CSS ile Tabloları şekillendirmek</a>&quot; adlı makalemizde tablo yapılarını gördük ve görünümünü daha güzel nasıl yaparız onun üzerinde durmuştuk. W3C bu durumu göz önünde bulundurarak tablo ve tablo elementlerinin görünümünü düzenlemek için tablo özellikleri ekledi. Tablolar diğer HTML elementlerinden daha farklı kendine has elementlerdir ve farklı özellikleri vardır. Burada CSS2 ile birlikte gelen yeni özellikleri inceleyeceğiz. </p>
<p>CSS2 ile birlikte gelen bu özelliklerden birçoğumuzun haberi olmayabilir. Ancak bizlere yardımcı olacak bu özelliklere göz atmak güzel. Bu özellikleri uygulamamızda en önemli etken tabiki IE&#8217;nin bu özelliklerin bir kısmını desteklememesidir. Bu tabiki IE&#8217;ye puan kaybettiriyor ve Microsoft&#8217;da bunun farkına geçte olsa vardığı söyleniyor ve IE8 ile birlikte tam CSS desteğini bizlere sunacakmış, tabi o zamana kadar Firefox IE&#8217;yi silip süpürmezse :D</p>
<p><span id="more-395"></span></p>
<ul>
<li><a href="#table-layout">table-layout</a></li>
<li><a href="#caption-side">caption-side</a></li>
<li><a href="#border-collapse">border-collapse</a></li>
<li><a href="#boder-spacing">border-spacing</a></li>
<li><a href="#empty-cells">empty-cells</a></li>
</ul>
<h3>table-layout<a name="table-layout" id="table-layout"></a></h3>
<p id="ozelliktanim"><strong>Yapısı :</strong> table-layout: &lt;deger&gt;<br />
  <strong>Aldığı Değerler :</strong> auto | fixed | kalıtsallık<br />
  <strong>Başlnagıç değeri:</strong> auto<br />
  <strong>Uygulanabilen elementler:</strong> display: table ve display:inline-table olarak belirlenen elementlere<br />
  <strong>Kalıtsallık:</strong> Var</p>
<div class="tarayiciuyum"><strong>Browser Uyumu:</strong></p>
<p>  Internet Explorer 5.0+<br />
  Firefox 1+<br />
  Opera 9.2+<br />
  Safari 1.3+<br />
  Chrome 2+<br />
  W3C&#8217;s CSS Level 2+<br />
  CSS Profile 2.0</div>
<p>Normalde tablolar içeriğindeki bilgiye göre genişliğini arttırır. Bu bize bir esnek kazandırır ancak bazen tablo genişliğimizin sabit kalmasını isteriz. table-layout:fixed değeri tablo genişliğimizi sabitlememizi sağlar. table-layout:auto ise tablo genişliğini içeriğe göre arttırır. </p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;table-layout örneği&lt;/title&gt;
&lt;style&gt;
table.otomatik {table-layout: auto; width: 350px; border-collapse: collapse;}
table.sabit {table-layout: fixed; width: 350px; border-collapse: collapse;}
td, th {border: 1px solid;}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;otomatik&quot;&gt;
  &lt;caption&gt;
  Limitli ADSL Fiyatları
  &lt;/caption&gt;
  &lt;tr&gt;
    &lt;th&gt;Hızı*(Kbps) &lt;/th&gt;
    &lt;th&gt;Kota(GB) &lt;/th&gt;
    &lt;th&gt;Bağlantı Ücreti** &lt;/th&gt;
    &lt;th&gt;Aylık Ücret &lt;/th&gt;
    &lt;th&gt;Limitin Üzerindeki Her MB için Ücret*** &lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;1024/256'e kadar&lt;/td&gt;
    &lt;td&gt;4&lt;/td&gt;
    &lt;td rowspan=&quot;3&quot;&gt;29 YTL&lt;/td&gt;
    &lt;td&gt;29 YTL&lt;/td&gt;
    &lt;td&gt;0,010 YTL&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;1024/256'e kadar&lt;/td&gt;
    &lt;td&gt;6&lt;/td&gt;
    &lt;td&gt;39 YTL&lt;/td&gt;
    &lt;td&gt;0,009 YTL&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;2048/512'e kadar&lt;/td&gt;
    &lt;td&gt;6&lt;/td&gt;
    &lt;td&gt;49YTL&lt;/td&gt;
    &lt;td&gt;0,009 YTL&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&amp;nbsp;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;sabit&quot;&gt;
  &lt;caption&gt;
  Limitli ADSL Fiyatları
  &lt;/caption&gt;
  &lt;tr&gt;
    &lt;th&gt;Hızı*(Kbps) &lt;/th&gt;
    &lt;th&gt;Kota(GB) &lt;/th&gt;
    &lt;th&gt;Bağlantı Ücreti** &lt;/th&gt;
    &lt;th&gt;Aylık Ücret &lt;/th&gt;
    &lt;th&gt;Limitin Üzerindeki Her MB için Ücret*** &lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;1024/256'e kadar&lt;/td&gt;
    &lt;td&gt;4&lt;/td&gt;
    &lt;td rowspan=&quot;3&quot;&gt;29 YTL&lt;/td&gt;
    &lt;td&gt;29 YTL&lt;/td&gt;
    &lt;td&gt;0,010 YTL&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;1024/256'e kadar&lt;/td&gt;
    &lt;td&gt;6&lt;/td&gt;
    &lt;td&gt;39 YTL&lt;/td&gt;
    &lt;td&gt;0,009 YTL&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;2048/512'e kadar&lt;/td&gt;
    &lt;td&gt;6&lt;/td&gt;
    &lt;td&gt;49YTL&lt;/td&gt;
    &lt;td&gt;0,009 YTL&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p align="center"><img src="http://www.fatihhayrioglu.com/images/table_layout.gif" alt="caption-side örneği" width="490" height="478"></p>
<p>Örneği görmek için<a href="http://www.fatihhayrioglu.com/dokumanlar/table-layout.html">tıklayınız.</a></p>
<h3>caption-side<a name="caption-side"></a></h3>
<p id="ozelliktanim"><strong>Yapısı :</strong>caption-side: &lt;deger&gt;<br />
  <strong>Aldığı Değerler :</strong>top | bottom | inherit<br />
  <strong>Başlnagıç değeri:</strong>top<br />
  <strong>Uygulanabilen elementler:</strong>display: table-caption olarak belirlenen elementlere<br />
  <strong>Kalıtsallık:</strong>Yok</p>
<p>Not: CSS2 ile birlikte left ve right değerleride vardı ancak kullanışsızlığı nedeni ile CSS2.1&#8242;de kaldırıldı.</p>
<p><strong>caption-side:</strong>Tablonun başlığının(&lt;caption&gt;) nerede(altta mı üstte mi) olacağını belirler.</p>
<p align="center"><img src="http://www.fatihhayrioglu.com/images/caption_side.gif" alt="caption-side örneği" width="490" height="418"></p>
<p>Örneği görmek için<a href="http://www.fatihhayrioglu.com/dokumanlar/caption_side.html">tıklayınız.</a></p>
<p>Bu özelliği IE(ie5+/mac destekliyor) desteklemiyor. Tüm tarayıcıların desteklediği şekilde kod yazmak için &lt;caption&gt; etiketinin<strong>align</strong>özelliği kullanılmalıdır. Örnek:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;caption align=&quot;bottom&quot;&gt;
ve
&lt;caption align=&quot;top&quot;&gt;
</pre>
<div class="tarayiciuyum"><strong>Browser Uyumu:</strong></p>
<p>  Internet Explorer 8+<br />
  Firefox 1+<br />
  Opera 9.2+<br />
  Safari 1.3+<br />
  Chrome 2+<br />
  W3C&#8217;s CSS Level 2+<br />
  CSS Profile 2.1</div>
<h3>border-collapse<a name="border-collapse"></a></h3>
<p id="ozelliktanim"><strong>Yapısı :</strong>border-collapse: &lt;deger&gt;<br />
  <strong>Aldığı Değerler :</strong>collapse | separate | kalıtsallık<br />
  <strong>Başlangıç değeri:</strong>separate<br />
  <strong>Uygulanabilen elementler:</strong>display:table ve display:table-caption olarak belirlenen elementlere<br />
  <strong>Kalıtsallık:</strong>Var</p>
<div class="tarayiciuyum"><strong>Browser Uyumu:</strong></p>
<p>  Internet Explorer 5.5+<br />
  Firefox 1+<br />
  Opera 9.2+<br />
  Safari 1.3+<br />
  Chrome 2+<br />
  W3C&#8217;s CSS Level 2+<br />
  CSS Profile 2.0</div>
<p>border-collapse, tablo hücrelerinin etrafındaki kenarlık ile olan mesafeyi azaltmamızı veya açmamızı sağlar.<strong>separate</strong>ataması yapılmış ise hücreler arasına bir kaç piksellik mesafe konur, HTML içinden bu boşlukları &lt;table&gt; etiketinin cellspacing özelliği ile kaldırmak istesek bile tarayıcılar bu seferde iki kenarlığı bir bir üstü gösterecektir. Eğer<strong>collapse</strong>değeri verilirse iki hücre arasındaki mesafe kalkacaktır ve tek kenarlık görünecektir.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;border-collapse örneği&lt;/title&gt;
&lt;style&gt;
table.ayri { border-collapse: separate; }
table.birlesik { border-collapse: collapse; }
td { border: 1px solid black; padding: 3px; }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table cellspacing=&quot;0&quot; class=&quot;ayri&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre1&lt;/td&gt;
    &lt;td&gt;hücre2&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre3&lt;/td&gt;
    &lt;td&gt;hücre4&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&amp;nbsp;
&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;birlesik&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre1&lt;/td&gt;
    &lt;td&gt;hücre2&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre3&lt;/td&gt;
    &lt;td&gt;hücre4&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Örneği görmek için<a href="http://www.fatihhayrioglu.com/dokumanlar/border-collapse.html">tıklayınız.</a></p>
<p align="center"><img src="http://www.fatihhayrioglu.com/images/border-collapse.gif" alt="border-collapse örneği" width="490" height="351"></p>
<h3>border-spacing<a name="boder-spacing"></a></h3>
<p id="ozelliktanim"><strong>Yapısı :</strong>border-spacing: &lt;deger&gt;<br />
  <strong>Aldığı Değerler :</strong>&lt;uzunluk&gt; &lt;uzunluk&gt;? | inherit<br />
  <strong>Başlangıç değeri:</strong>0<br />
  <strong>Uygulanabilen elementler:</strong>display:table ve display:table-caption olarak belirlenen elementlere<br />
  <strong>Kalıtsallık:</strong>Var</p>
<div class="tarayiciuyum"><strong>Browser Uyumu:</strong></p>
<p>  Internet Explorer 8+<br />
  Firefox 1+<br />
  Opera 9.2+<br />
  Safari 1.3+<br />
  Chrome 2+<br />
  W3C&#8217;s CSS Level 2+<br />
  CSS Profile 2.0</div>
<p>border-spacing, normal uzunluk değerleri alır ve<strong>border-collapse:separate</strong>ile birlikte kullanılır. Eğer tek değer verilirse bu tüm kenarlar için geçerlidir, iki değer atanırsa ilki yatayda boşluk için ikincisi dikey de boşluk vermek için tanımlanmıştır.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;border-spacing örneği&lt;/title&gt;
&lt;style&gt;
table.ayri { border-collapse: separate; border-spacing: 3px 5px; }
table.birlesik { border-collapse: separate; }
td { border: 1px solid black; padding: 3px; }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table cellspacing=&quot;0&quot; class=&quot;ayri&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre1&lt;/td&gt;
    &lt;td&gt;hücre2&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre3&lt;/td&gt;
    &lt;td&gt;hücre4&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&amp;nbsp;
&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;birlesik&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre1&lt;/td&gt;
    &lt;td&gt;hücre2&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre3&lt;/td&gt;
    &lt;td&gt;hücre4&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Örneği görmek için<a href="http://www.fatihhayrioglu.com/dokumanlar/border-spacing.html">tıklayınız.</a></p>
<p align="center"><img src="http://www.fatihhayrioglu.com/images/border_spacing.gif" alt="border-spacing örneği" width="490" height="351"></p>
<h3>empty-cells<a name="empty-cells"></a></h3>
<p id="ozelliktanim"><strong>Yapısı :</strong>empty-cells: &lt;deger&gt;<br />
  <strong>Aldığı Değerler :</strong>show | hide | kalıtsallık<br />
  <strong>Başlangıç değeri:</strong>show<br />
  <strong>Uygulanabilen elementler:</strong>display:table-cellolarak belirlenen elementlere<br />
  <strong>Kalıtsallık:</strong>Var</p>
<div class="tarayiciuyum"><strong>Browser Uyumu:</strong></p>
<p>  Internet Explorer 8+<br />
  Firefox 1+<br />
  Opera 9.2+<br />
  Safari 1.3+<br />
  Chrome 2+<br />
  W3C&#8217;s CSS Level 2+<br />
  CSS Profile 2.0</div>
<p>Bir tabloya bazı değerler atadığımızda(örneğin kenarlık değeri) boş olan hücreler bu değeri görmez, bu durumu düzeltmek için boş olan hücreler için boş karakter(&nbsp;) koyarız genel.<strong>empty-cells</strong>özelliği ile boş kalan hücrelere nasıl davranması gerektiğini bildirebiliriz. göster(<strong>show</strong>) değeri ile hücrenin içeriği olan hücreler ile aynı özellikleri almasını sağlayabiliriz. gizle(<strong>hide</strong>) değeri ile de hücrenin yokmuş gibi davranmasını sağlarız.</p>
<p>Bu özellik Internet Explorer tarafından desteklenmemektedir.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
&lt;title&gt;empty-cells örneği&lt;/title&gt;
&lt;style&gt;
table.goster { empty-cells:show }
table.gizle { empty-cells:hide }
td { border: 1px solid black; padding: 3px; }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table cellspacing=&quot;0&quot; class=&quot;goster&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;/td&gt;
    &lt;td&gt;hücre2&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre3&lt;/td&gt;
    &lt;td&gt;hücre4&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&amp;nbsp;
&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;gizle&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;/td&gt;
    &lt;td&gt;hücre2&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;hücre3&lt;/td&gt;
    &lt;td&gt;hücre4&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Örneği görmek için<a href="http://www.fatihhayrioglu.com/dokumanlar/empty_cells.html">tıklayınız.</a></p>
<p align="center"><img src="http://www.fatihhayrioglu.com/images/empty_cells.gif" alt="empty-cells örneği" width="490" height="351"></p>
<h3>Kaynaklar</h3>
<ul>
<li><a href="http://www.w3.org/TR/REC-CSS2/tables.html">http://www.w3.org/TR/REC-CSS2/tables.html</a></li>
<li><a href="http://www.w3schools.com/css/css_table.asp">http://www.w3schools.com/css/css_table.asp</a></li>
<li><a href="http://www.blooberry.com/indexdot/css/propindex/table.htm">http://www.blooberry.com/indexdot/css/propindex/table.htm</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fatihhayrioglu.com/tablo-ozellikleri/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>CSS İpuçları 13 &#8211; CSS&#8217;de Cellspacing=&#8221;0&#8243; nasıl yakalarız</title>
		<link>http://www.fatihhayrioglu.com/css-ipuclari-13-cssde-cellspacing0-nasil-yakalariz/</link>
		<comments>http://www.fatihhayrioglu.com/css-ipuclari-13-cssde-cellspacing0-nasil-yakalariz/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 07:24:24 +0000</pubDate>
		<dc:creator>fatih.hayrioglu</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[border-collapse]]></category>
		<category><![CDATA[border-spacing]]></category>
		<category><![CDATA[tablo]]></category>

		<guid isPermaLink="false">http://www.fatihhayrioglu.com/?p=354</guid>
		<description><![CDATA[Artık sayfalarımızı CSS ile oluşturup şekillendiriyoruz. Tabloların Cellspacing=&#8221;0&#8243; atamasını css ile nasıl yaparız. İşte cevabı: bu kadar. Kaynak http://www.mularien.com/blog/2007/07/29/css-tip-css-equivalent-to-cellspacing0/]]></description>
			<content:encoded><![CDATA[<p>Artık sayfalarımızı CSS ile oluşturup şekillendiriyoruz. Tabloların Cellspacing=&#8221;0&#8243; atamasını css ile nasıl yaparız. İşte cevabı:</p>
<pre class="brush: css; title: ; notranslate">
table{
border-spacing: 0px;
border-collapse: collapse;
}
</pre>
<p>bu kadar.</p>
<h3>Kaynak</h3>
<ul>
<li><a href="http://www.mularien.com/blog/2007/07/29/css-tip-css-equivalent-to-cellspacing0/">http://www.mularien.com/blog/2007/07/29/css-tip-css-equivalent-to-cellspacing0/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fatihhayrioglu.com/css-ipuclari-13-cssde-cellspacing0-nasil-yakalariz/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

