<?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>map arşivleri - BARIŞ DOĞAN SÜTÇÜ</title>
	<atom:link href="https://barisdogansutcu.com/tag/map/feed/" rel="self" type="application/rss+xml" />
	<link>https://barisdogansutcu.com/tag/map/</link>
	<description>FRONTEND DEVELOPER</description>
	<lastBuildDate>Fri, 23 Sep 2022 13:38:32 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>

<image>
	<url>https://barisdogansutcu.com/wp-content/uploads/2019/07/barisdogansutcuLogo.png</url>
	<title>map arşivleri - BARIŞ DOĞAN SÜTÇÜ</title>
	<link>https://barisdogansutcu.com/tag/map/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>SCSS ve SASS&#8217;ta Each Döngüsü Oluşturma</title>
		<link>https://barisdogansutcu.com/scss-ve-sassta-each-dongusu-olusturma/</link>
					<comments>https://barisdogansutcu.com/scss-ve-sassta-each-dongusu-olusturma/#respond</comments>
		
		<dc:creator><![CDATA[Barış Doğan Sütçü]]></dc:creator>
		<pubDate>Sun, 14 Aug 2022 22:55:39 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Notları]]></category>
		<category><![CDATA[SASS]]></category>
		<category><![CDATA[SCSS]]></category>
		<category><![CDATA[EACH]]></category>
		<category><![CDATA[frontend developer]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[scss ile each kullanımı]]></category>
		<guid isPermaLink="false">https://barisdogansutcu.com/?p=9167</guid>

					<description><![CDATA[<p>SCSS veya SASS kullanırken işimizi rahatlatacak ve bir o kadarda kullanımının keyifli olduğu each döngüsünü anlatacağım. Each ile oluşturacağımız kod yapısı, item sayısı kadar döngüye sokup, bu dizeler içerisinde bulunan her bir iteme erişmemiz mümkün.</p>
<p><a href="https://barisdogansutcu.com/scss-ve-sassta-each-dongusu-olusturma/">SCSS ve SASS&#8217;ta Each Döngüsü Oluşturma</a> yazısı ilk önce <a href="https://barisdogansutcu.com">BARIŞ DOĞAN SÜTÇÜ</a> üzerinde ortaya çıktı.</p>
]]></description>
										<content:encoded><![CDATA[
<p>SCSS veya SASS kullanırken işimizi rahatlatacak ve bir o kadarda kullanımının keyifli olduğu each döngüsünü ve each kullanımını anlatacağım. Each ile oluşturacağımız kod yapısı, item sayısı kadar döngüye sokup, bu dizeler içerisinde bulunan her bir iteme erişmemiz mümkün.</p>



<p>Öncelikle anlatımımıza başlamadan önce karmaşık olmasa da yorucu bir işlemi CSS ile gösterip, ardından SCSS ile anlatacağım.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}">&lt;div class=&quot;icon-facebook&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;icon-twitter&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;icon-instagram&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;icon-youtube&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;icon-linkedin&quot;&gt;&lt;/div&gt;</pre></div>



<p>HTML kalıbımızı oluşturduk. Ardından CSS ile her bir class&#8217;a ayrı ayrı kod parçacığı eklemeliyiz.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;CSS basit kullan\u0131m\u0131&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}">.icon-facebook{
	background-image:url(&quot;img/icons/facebook.svg&quot;) no-repeat 50%;
}
.icon-twitter{
	background-image:url(&quot;img/icons/twitter.svg&quot;) no-repeat 50%;
}
.icon-instagram{
	background-image:url(&quot;img/icons/instagram.svg&quot;) no-repeat 50%;
}
.icon-twitter{
	background-image:url(&quot;img/icons/youtube.svg&quot;) no-repeat 50%;
}
.icon-linkedin{
	background-image:url(&quot;img/icons/linkedin.svg&quot;) no-repeat 50%;
}</pre></div>



<p>Her sosyal medya için tek tek class açıp farklı url adreslerini girdik. Şimdi ise SCSS&#8217;i izleyelim.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/x-scss&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;SCSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;scss&quot;}">$social: facebook twitter instagram youtube linkedin;
	@each $object in $social {
		.icon-#{$object} {
			background:url(&quot;img/icons/#{$object}.svg&quot;) no-repeat 50%;
		}
	}</pre></div>



<p>Yazdığımız bu kısa kodun çıktısı bu şekilde olacaktır.</p>



<div class="wp-block-codemirror-blocks-code-block code-block"><pre class="CodeMirror" data-setting="{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text/x-scss&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;SCSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;scss&quot;}">.icon-facebook{
	background-image:url(&quot;img/icons/facebook.svg&quot;) no-repeat 50%;
}
.icon-twitter{
	background-image:url(&quot;img/icons/twitter.svg&quot;) no-repeat 50%;
}
.icon-instagram{
	background-image:url(&quot;img/icons/instagram.svg&quot;) no-repeat 50%;
}
.icon-twitter{
	background-image:url(&quot;img/icons/youtube.svg&quot;) no-repeat 50%;
}
.icon-linkedin{
	background-image:url(&quot;img/icons/linkedin.svg&quot;) no-repeat 50%;
}</pre></div>
<p><a href="https://barisdogansutcu.com/scss-ve-sassta-each-dongusu-olusturma/">SCSS ve SASS&#8217;ta Each Döngüsü Oluşturma</a> yazısı ilk önce <a href="https://barisdogansutcu.com">BARIŞ DOĞAN SÜTÇÜ</a> üzerinde ortaya çıktı.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://barisdogansutcu.com/scss-ve-sassta-each-dongusu-olusturma/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
