<?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>hyunsun&#039;s notes</title>
	<atom:link href="http://hyunsun.co.kr/feed/" rel="self" type="application/rss+xml" />
	<link>http://hyunsun.co.kr</link>
	<description></description>
	<lastBuildDate>Wed, 20 Jul 2011 06:18:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>test</title>
		<link>http://hyunsun.co.kr/2011/07/20/test/</link>
		<comments>http://hyunsun.co.kr/2011/07/20/test/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 06:18:22 +0000</pubDate>
		<dc:creator>bbobbo</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>

		<guid isPermaLink="false">http://hyunsun.co.kr/?p=31</guid>
		<description><![CDATA[dddddd
]]></description>
			<content:encoded><![CDATA[<p>dddddd</p>
]]></content:encoded>
			<wfw:commentRss>http://hyunsun.co.kr/2011/07/20/test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>아이폰 회전시 폰트 크기 고정하기</title>
		<link>http://hyunsun.co.kr/2010/03/15/%ec%95%84%ec%9d%b4%ed%8f%b0-%ed%9a%8c%ec%a0%84%ec%8b%9c-%ed%8f%b0%ed%8a%b8-%ed%81%ac%ea%b8%b0-%ea%b3%a0%ec%a0%95%ed%95%98%ea%b8%b0/</link>
		<comments>http://hyunsun.co.kr/2010/03/15/%ec%95%84%ec%9d%b4%ed%8f%b0-%ed%9a%8c%ec%a0%84%ec%8b%9c-%ed%8f%b0%ed%8a%b8-%ed%81%ac%ea%b8%b0-%ea%b3%a0%ec%a0%95%ed%95%98%ea%b8%b0/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 09:13:56 +0000</pubDate>
		<dc:creator>bbobbo</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://hyunsun.co.kr/?p=25</guid>
		<description><![CDATA[모바일 웹 페이지를 처음으로 만들어 보았는데, 아이폰에서 가로/세로로 회전을 할때 폰트 크기가 고정되지 않고 확대/축소 되는 문제를 발견했다.
이 문제를 해결 하려면 css 에 다음과 같이 추가 하면 된다.

&#60;style type="text/css"&#62;
html	{-webkit-text-size-adjust: none;}
&#60;/style&#62;

]]></description>
			<content:encoded><![CDATA[<p>모바일 웹 페이지를 처음으로 만들어 보았는데, 아이폰에서 가로/세로로 회전을 할때 폰트 크기가 고정되지 않고 확대/축소 되는 문제를 발견했다.</p>
<p>이 문제를 해결 하려면 css 에 다음과 같이 추가 하면 된다.</p>
<pre>
&lt;style type="text/css"&gt;
html	{-webkit-text-size-adjust: none;}
&lt;/style&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hyunsun.co.kr/2010/03/15/%ec%95%84%ec%9d%b4%ed%8f%b0-%ed%9a%8c%ec%a0%84%ec%8b%9c-%ed%8f%b0%ed%8a%b8-%ed%81%ac%ea%b8%b0-%ea%b3%a0%ec%a0%95%ed%95%98%ea%b8%b0/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Text Shadow</title>
		<link>http://hyunsun.co.kr/2010/03/15/text-shadow/</link>
		<comments>http://hyunsun.co.kr/2010/03/15/text-shadow/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 08:43:01 +0000</pubDate>
		<dc:creator>bbobbo</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[css3 text-shadow]]></category>

		<guid isPermaLink="false">http://hyunsun.co.kr/?p=13</guid>
		<description><![CDATA[
text-shadow 는 위와 같이 텍스트에 그림자 효과를 주는 속성이다.
blur 값이 크면 클수록 로딩 속도가 느려지기 때문에 blur 값에 0을 주었더니, CSS3를 지원하는 브라우저나 아이폰에서는 잘 나오는데, 모토로라 드로이드폰에서는 섀도우가 나타나지 않는 현상을 발견했다.
이런 경우에는 text-shadow에 blur 값을 1px이상 주면 해결이 된다.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://hyunsun.co.kr/wordpress/wp-content/uploads/2010/03/text-shadow.gif"><img class="aligncenter size-full wp-image-14" title="text-shadow" src="http://hyunsun.co.kr/wordpress/wp-content/uploads/2010/03/text-shadow.gif" alt="" width="470" height="276" /></a></p>
<p><strong>text-shadow</strong> 는 위와 같이 텍스트에 그림자 효과를 주는 속성이다.</p>
<p>blur 값이 크면 클수록 로딩 속도가 느려지기 때문에 <strong>blur 값에 0</strong>을 주었더니, CSS3를 지원하는 브라우저나 아이폰에서는 잘 나오는데, 모토로라 드로이드폰에서는 섀도우가 나타나지 않는 현상을 발견했다.</p>
<p>이런 경우에는 text-shadow에 blur 값을 <strong>1px</strong>이상 주면 해결이 된다.</p>
]]></content:encoded>
			<wfw:commentRss>http://hyunsun.co.kr/2010/03/15/text-shadow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

