<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>mydeute's RSS List</title>
<link>http://www.mydeute.com/planet</link>
<description>듀트가 보는 사이트들!</description>
<language>ko</language>
<pubDate>Sun, 05 Feb 2012 07:23:23 +0900</pubDate>
<generator>Bloglounge 0.3.1.1 flyingbucket</generator>
<item>
<title>영하 15도 안밖을 오가는 날이 계속이다.

그런데 오늘따라 나는 가슴이 먹먹하니 조금 답답하다고...</title>
<link>http://feedproxy.google.com/~r/pageoff/FNck/~3/RHINZllQBEQ/16958235511</link>
<description>&lt;img src=&quot;http://29.media.tumblr.com/tumblr_lyssqyxJRl1qb7c9eo1_500.png&quot;/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;영하 15도 안밖을 오가는 날이 계속이다.&lt;/p&gt;

&lt;p&gt;그런데 오늘따라 나는 가슴이 먹먹하니 조금 답답하다고 느꼈는지&lt;/p&gt;

&lt;p&gt;카페테리아에서 좀처럼 주문하지 않았던 아이스 매실을 시켰다.&lt;/p&gt;

&lt;p&gt;하얀색 종이컵 안에 서로의 한기로 맞닿아 있는 얼음들이 탐스럽게 보인다.&lt;/p&gt;

&lt;p&gt;한모금이 목구멍을 따라 속을 쓸고 지나가는 느낌이 시원하고 좋다.&lt;/p&gt;

&lt;p&gt;얼음이 점점 내려가고, 더 가까이 맞부딛친다.&lt;/p&gt;

&lt;p&gt;서글서글하게 서로를 비벼대며 녹는다. 아니 하나로 붙어 있기 위함일까?&lt;/p&gt;

&lt;p&gt;마지막 남은 매실 음료를 목으로 털어 넣은 뒤에도 여전히 동그란 얼음 알갱이 몇개가 종이컵 바닥을 뒹굴고 있다.&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/pageoff/FNck/~4/RHINZllQBEQ&quot; height=&quot;1&quot; width=&quot;1&quot;/&gt;</description>
<category />
<author />
<guid>http://feedproxy.google.com/~r/pageoff/FNck/~3/RHINZllQBEQ/16958235511</guid>
<pubDate>Fri, 03 Feb 2012 14:46:45 +0900</pubDate>
</item>
<item>
<title>Skip links and standards?</title>
<link>http://www.maxdesign.com.au/2012/02/02/skip-links/</link>
<description>&lt;p&gt;
	&lt;strong&gt;Question&lt;/strong&gt;: Are there any standards associated with skip links?
&lt;/p&gt;
&lt;p&gt;
	&lt;strong&gt;Answer&lt;/strong&gt;: Yes! In order to comply with Success Criterion 2.4.1 Bypass Blocks – you must provide a mechanism to “bypass blocks of content that are repeated on multiple Web pages. (Level A)”
&lt;/p&gt;
&lt;p&gt;
One of the “sufficient techniques” recommended by the W3C for bypassing blocks is the use of skip links. You can read more about them here:
&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;
		“The objective of this technique is to provide a mechanism to bypass blocks of material that are repeated on multiple Web pages by skipping directly to the main content of the Web page. The first interactive item in the Web page is a link to the beginning of the main content. Activating the link sets focus beyond the other content to the main content. This technique is most useful when a Web page has one main content area, rather than a set of content areas that are equally important.”
	&lt;/p&gt;
&lt;p class=&quot;source&quot;&gt;
		&lt;a href=&quot;http://www.w3.org/TR/2008/NOTE-WCAG20-TECHS-20081211/G1.html&quot;&gt;Adding a link at the top of each page that goes directly to the main content area&lt;/a&gt;
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
	For a website to pass this success criteria, the following tests must be passed:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Check that a link is the first focusable control on the Web page.&lt;/li&gt;
&lt;li&gt;Check that the description of the link communicates that it links to the main content.&lt;/li&gt;
&lt;li&gt;Check that the link is either always visible or visible when it has keyboard focus.&lt;/li&gt;
&lt;li&gt;Check that activating the link moves the focus to the main content.&lt;/li&gt;
&lt;li&gt;Check that after activating the link, the keyboard focus has moved to the main content.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
	Debate 1: NAME vs ID&lt;br /&gt;
&lt;/h3&gt;
&lt;p&gt;
	Example 1 – using an NAME attribute as the target
&lt;/p&gt;
&lt;pre class=&quot;codesample&quot;&gt;&lt;code&gt;&amp;lt;a href=&quot;#content&quot;&amp;gt;Skip to content (Press enter)&amp;lt;/a&amp;gt;
&amp;lt;div&amp;gt;
	&amp;lt;a name=&quot;content&quot;&amp;gt;Content&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;
	Example 1 – using an ID attribute as the target
&lt;/p&gt;
&lt;pre class=&quot;codesample&quot;&gt;&lt;code&gt;&amp;lt;a href=&quot;#content&quot;&amp;gt;Skip to content (Press enter)&amp;lt;/a&amp;gt;
&amp;lt;div id=&quot;content&quot;&amp;gt;
	Content
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;
	Many years ago, browsers like IE5 used to have trouble with linking to ID’s. For this reason, many Accessibiltiy Experts recommended using the NAME attribute. however, this practice is not recommended any more. In fact, if you are using HTML5, then using the NAME attribute will throw a warning.
&lt;/p&gt;
&lt;h3&gt;
	Debate 2: Visible skip links&lt;br /&gt;
&lt;/h3&gt;
&lt;p&gt;
	Ideally, skip links should be visible to all users. This allows not only screen reader users, but those who navigate with the keyboard to see these links immediately.
&lt;/p&gt;
&lt;p&gt;
	However, many clients do not like visible skip links on their sites. An acceptable alternative is to use skip links that become visible when it receives keyboard focus – ie when a user tabs through the page.
&lt;/p&gt;
&lt;h3&gt;
	Examples&lt;br /&gt;
&lt;/h3&gt;
&lt;p&gt;
	Here are three example pages – all using hidden skip links that become available once the user has given them focus.
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://maxdesign.com.au/jobs/example-skip/01.htm&quot;&gt;Skip example 01 – using “id” as a target – HTML5&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://maxdesign.com.au/jobs/example-skip/02.htm&quot;&gt;Skip example 02 – using “name” as a target – HTML4.01 strict&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://maxdesign.com.au/jobs/example-skip/03.htm&quot;&gt;Skip example 03 – using “name” as a target – HTML5&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
	The CSS code used in these example:
&lt;/p&gt;
&lt;pre class=&quot;codesample&quot;&gt;&lt;code&gt;.skipLink a
{
	position: absolute;
	left: -1000px;
	z-index: 2;
	margin: 0;
	padding: .5em;
	background: #fff;
	font-size: 200%;
	font-weight: bold;
	text-decoration: none;
}

.skipLink a:active,
.skipLink a:focus,
.skipLink a:hover
{
	display: inline;
	top: 0;
	left: 0;
	color: #fff;
	background: #000;
}&lt;/code&gt;&lt;/pre&gt;</description>
<category>News</category>
<author>Russ</author>
<guid>http://www.maxdesign.com.au/2012/02/02/skip-links/</guid>
<pubDate>Thu, 02 Feb 2012 08:35:30 +0900</pubDate>
</item>
<item>
<title>Some links for light reading (31/1/12)</title>
<link>http://www.maxdesign.com.au/2012/02/01/some-links-360/</link>
<description>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.w3.org/TR/2012/WD-css3-text-20120119/&quot;&gt;CSS Text Level 3 – W3C Working Draft 19 January 2012&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://syntaxhighlight.in/&quot;&gt;Syntax Highlight&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.alistapart.com/articles/responsive-images-how-they-almost-worked-and-what-we-need/&quot;&gt;Responsive Images: How they Almost Worked and What We Need&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sitepoint.com/responsive-web-design/&quot;&gt;Responsive Web Design&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://elliotjaystocks.com/blog/a-better-photoshop-grid-for-responsive-web-design/&quot;&gt;A better photoshop grid for responsive web design&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.impressivewebs.com/new-css3-text-wrap/&quot;&gt;New CSS3 Properties to Handle Text and Word Wrapping&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://snook.ca/archives/html_and_css/naming-convention-in-css&quot;&gt;Naming convention in CSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.css3.info/css3-images-pre-lc/&quot;&gt;CSS3 Images End-Game: Summary of Changes and Request for Comments&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.brucelawson.co.uk/2012/best-of-time/&quot;&gt;The best of [time]s&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.css-101.org/articles/the_power_of_the_web_is_in_its_universality/strive_to_make_content_accessible_to_all.php&quot;&gt;Did we lose track of the big picture?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sitepoint.com/the-hidden-nuggets-of-wcag2-the-wonderful-world-of-alt-attributes-part-i/&quot;&gt;The Hidden Nuggets of WCAG2: The Wonderful World of ALT Attributes, Part I&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.dingoaccess.com/accessibility/jaws-11-and-ie-9/&quot;&gt;JAWS 11 and IE 9&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://uxdesign.smashingmagazine.com/2012/01/12/inclusive-design/&quot;&gt;Inclusive Design&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description>
<category>Links for light reading</category>
<category> News</category>
<author>Russ</author>
<guid>http://www.maxdesign.com.au/2012/02/01/some-links-360/</guid>
<pubDate>Tue, 31 Jan 2012 22:16:21 +0900</pubDate>
</item>
<item>
<title>새로 구입한 무선 프린터!

최근에 아이맥을 구입하면서 복잡한 작은방에서 빠져나와 거실 식탁(?) 위에 아이맥을...</title>
<link>http://feedproxy.google.com/~r/pageoff/FNck/~3/aiTdkEWwqI4/16553771714</link>
<description>&lt;img src=&quot;http://28.media.tumblr.com/tumblr_lyfot0kMSp1qb7c9eo1_500.jpg&quot;/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;새로 구입한 무선 프린터!&lt;/p&gt;

&lt;p&gt;최근에 아이맥을 구입하면서 복잡한 작은방에서 빠져나와 거실 식탁(?) 위에 아이맥을 설치했다. 그러다보니 전에 사용하던 프린터 위치가 애매해져 버렸다. 좁은 식탁위에 프린터까지 놓기는 무리가 있었고 두돌 지난 아이가 있는 집안에서 식탁 아래 프린터를 두었다간 얼마 못가 박살이 날 것만 같았고… 그래서 사용하던 유선 프린터는 중고로 팔아버리고,   HP K510A  모델을 새로 구입했다.&lt;/p&gt;

&lt;p&gt;박스를 열고, 기본적인 셋팅을 하는데까지는 별로 어려움이 없었는데 막상 무선 프린터는 어떻게 아이맥에서 추가해서 설정해야하는지 몰라서 난감했더랬다. 더군다나 동봉된 시디에는 10.6 스노우 레오파드까지만 지원하는 드라이버가 들어 있었고…&lt;/p&gt;

&lt;p&gt;구글링을 하다보니 라이언  OS 부터는 자체적으로   HP 프린터 드라이버를 포함하고 있는듯 했고, 라이언 OS 를 최신 상태로 유지하기만 하면 되는듯했다. 그리고 현재 아이맥에 유선랜으로 네트워크가 연결되어 있었는데 무선랜( wifi) 도 함께 활성화 되어 있어야 프린터가 인식되더라.&lt;/p&gt;

&lt;p&gt;약간의 시행착오 끝에 새 프린터를 아이맥에 인식시키는데 성공했고, 테스트 프린팅까지 잘 마쳤고, 동굴 같은 작은방에 집어 넣었다.&lt;/p&gt;

&lt;p&gt;새로 산 프린터를 밝고, 넓은(?) 거실에 두지 못하고 좁디 좁은 작은방에 숨겨두어야 하는 현실이 안탑깝긴 하지만 현실이 이럴진대 어이할까. 그래서 이 녀석을 산 것이니 할 수 없지 않은가. 훗.&lt;/p&gt;

&lt;p&gt;참 좋은 세상이다.
너저분한 선들 때문에 걸리적 거리던게 엇그제같은데 아이맥과 무선 프린터로 바꾸니 전원선 2개만 남겨놓고 모두 없애 버릴수 있다니 말이다.&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/pageoff/FNck/~4/aiTdkEWwqI4&quot; height=&quot;1&quot; width=&quot;1&quot;/&gt;</description>
<category />
<author />
<guid>http://feedproxy.google.com/~r/pageoff/FNck/~3/aiTdkEWwqI4/16553771714</guid>
<pubDate>Fri, 27 Jan 2012 10:43:47 +0900</pubDate>
</item>
<item>
<title>우리는 모두 공범</title>
<link>http://feedproxy.google.com/~r/goodhyun/~3/UwYYTLFMZTk/1002</link>
<description>&lt;p&gt;재벌의 골목 상권 진입에 대해 이야기가 많습니다. 재벌의 딸들을 비난하지요, 어떻게 그럴 수가 있냐고… 네... &lt;/p&gt;
  &lt;p&gt;그러나 한국 사회 부조리의 다른 상당수가 그렇듯, 고질라는 우주에서 오지 않았습니다. 우리 안에서 태어났지요. &lt;/p&gt;
  &lt;p&gt;자본의 습성이란 팽창에 있습니다. 왜냐하면 성장하지 않으면 안되는 것이 자본주의의 회사입니다. 그 것은 본능이자 존재이유에요. 그 회사의 높은 분 중 누군가가 또 다른 성장 분야를 발견하는 것은 사실 언제 어디서나 있을 수 있는 일입니다. &lt;/p&gt;
  &lt;p&gt;“마이크로소프트의 소프트크림을 만들면 부드러울 것 같지 않아?”&lt;/p&gt;
  &lt;p&gt;“애플의 애플 쥬스 사업을 빨리 해야 하지 않겠어? 디자인도 이미 나왔잖아.”&lt;/p&gt;
  &lt;p&gt;“구글의 스키고글은 삼원색 라인부터 시작해봐.”&lt;/p&gt;
  &lt;p&gt;아래로부터 어떤 반응이 나올까요? &lt;/p&gt;
  &lt;p&gt;“Hey, Bill, this is so lame…&quot;,    &lt;br /&gt;
“With all due respect, Steve, but…” &lt;/p&gt;
  &lt;p&gt;아마 아무도 그 높은 분을 편들지 않았을 겁니다. 심지어 설탕물 전문가가 있었던 애플에서도요. 그 것이 같은 곳을 바라 보는 이들이 모였을 때 생기는 ‘기업 문화’입니다. &lt;/p&gt;
  &lt;p&gt;또한 정말 소프트크림 전문가는, 쥬스에 애정이 있는 사람은 위의 회사들에서 일할 리가 없지요. 자기가 빛날 수 있는 곳을 아니까요. 정말 좋은 실력이라면 자신의 비즈니스를 일으킬거에요. 이러한 관계에서 발생하는 묘한 긴장감이 회사의 미래에 대한 전략적 방향을 결정합니다. &lt;/p&gt;
  &lt;p&gt;한편 우리는 모두 ‘그룹’에 일단 들어가려 합니다. 그 안에서 장기간의 고용을 약속 받는 대신 뭐든지 하게 됩니다. 시키는 대로. 그렇게 3년 쯤 보내면, 자기가 빛날 수 있는 곳을 잊게 되지요. 정말 좋은 기회라도 자신의 비즈니스를 일으키는 것은 비합리적이라고 믿게 됩니다. 월급이 최고! 회사 복지가 안전!&lt;/p&gt;
  &lt;p&gt;그리고 그렇게 한국에서 가장 훌륭한 인재들은 그렇게 자의적(恣意的)으로 골라진 성장분야에 헌신하게 됩니다. 그러기에 그렇게 아름다운 로고에 세련된 디자인에 양질의 재료에 훌륭한 유통라인에, 그리고 다시 포인트적립에 할인에 제휴마케팅에, 자본주의의 모든 정수가 응집된 비즈니스가 만들어지고, 그 추세가 퍼지고 퍼져 골목까지 가게 되지요.&lt;/p&gt;
  &lt;p&gt;그리고 세련된 브랜드에 편리한 대량소비에 늘어 나는 포인트에 편리한 멤버쉽에 매료된 소비자로서의 우리는 그렇게 충실히 그 자본주의의 정수들을 즐겁게 향유하며, 때로는 ◆▲가족만의 혜택을 부러워하며, ‘그룹’ 밖의 모든 비즈니스를 촌스럽다는 시선으로 바라보게 되겠지요. &lt;/p&gt;
  &lt;p&gt;모두가 자본주의를 구가하고 있다고 믿었지만, 정작 자본주의의 꽃인 ‘startup’이 피어나기 힘든 사회의 한 풍경, &lt;/p&gt;
  &lt;p&gt;그 풍경에 대해 우리는 모두 공범입니다.&amp;nbsp; &lt;br /&gt;
그리고 우리의 골목 상권은 최신 피해자일 뿐, 사건은 아직 끝나지 않았답니다. &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/_wfVZD2YEfVfQwuT3JEaFHML8pM/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/_wfVZD2YEfVfQwuT3JEaFHML8pM/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/_wfVZD2YEfVfQwuT3JEaFHML8pM/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/_wfVZD2YEfVfQwuT3JEaFHML8pM/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot;&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/goodhyun?a=UwYYTLFMZTk:DXdhIVj-1lo:0uMQ1BZwEsk&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/goodhyun?d=0uMQ1BZwEsk&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/goodhyun?a=UwYYTLFMZTk:DXdhIVj-1lo:BHqocNvGkt0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/goodhyun?d=BHqocNvGkt0&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/goodhyun?a=UwYYTLFMZTk:DXdhIVj-1lo:qj6IDK7rITs&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/goodhyun?d=qj6IDK7rITs&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/goodhyun/~4/UwYYTLFMZTk&quot; height=&quot;1&quot; width=&quot;1&quot;/&gt;</description>
<category />
<author>goodhyun</author>
<guid>http://feedproxy.google.com/~r/goodhyun/~3/UwYYTLFMZTk/1002</guid>
<pubDate>Fri, 27 Jan 2012 09:00:00 +0900</pubDate>
</item>
<item>
<title>터치 장갑 한짝을 잃어버렸나보다. 오늘 아침에도 있었는데… 터치가 되는 손가락반 하얗게 되어 있는 보라색...</title>
<link>http://feedproxy.google.com/~r/pageoff/FNck/~3/lWBNJLX_R0o/16516743597</link>
<description>&lt;img src=&quot;http://27.media.tumblr.com/tumblr_lyekazeBaL1qb7c9eo1_500.jpg&quot;/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;터치 장갑 한짝을 잃어버렸나보다. 오늘 아침에도 있었는데… 터치가 되는 손가락반 하얗게 되어 있는 보라색 장갑이었는데. 조금 촌스럽긴 했지만 추운날에도 폰을 쓸 수 있게 해줘서 좋았는데 영 안탑깝네… 새로 사긴 아깝고. 어디서 떨어뜨린거지?&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/pageoff/FNck/~4/lWBNJLX_R0o&quot; height=&quot;1&quot; width=&quot;1&quot;/&gt;</description>
<category />
<author />
<guid>http://feedproxy.google.com/~r/pageoff/FNck/~3/lWBNJLX_R0o/16516743597</guid>
<pubDate>Thu, 26 Jan 2012 20:08:58 +0900</pubDate>
</item>
<item>
<title>How to change App ID in Inline Translator</title>
<link>http://miya.pe.kr/2012/01/23/how-to-change-app-id-in-inline-translator/</link>
<description>&lt;h2&gt;Overview&lt;/h2&gt;

&lt;p&gt;
    Inline Translator uses Bing translation API of microsoft.
    Bing API has usage limit and so Inline Translator’s default API key goes limit often.
    You can simply change API key to yours so you can avoid API usage limit.
&lt;/p&gt;

&lt;h2&gt;Change Bing Translation API Key&lt;/h2&gt;

&lt;ol&gt;

    &lt;li&gt;At first, go to &lt;a href=&quot;https://ssl.bing.com/webmaster/developers/appids.aspx?rfp=7&quot;&gt;application page of bing webmaster&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;Login with Windows Live ID. If you don’t have Windows Live ID, create one! :)&lt;/li&gt;
    &lt;li&gt;So you can see the list page like below&lt;br /&gt;
        &lt;img alt=&quot;&quot; src=&quot;/inline_translator/bing_ss1.png&quot; /&gt;
    &lt;/li&gt;
    &lt;li&gt;Click “Add” button and fill up and save form.&lt;/li&gt;

    &lt;li&gt;After save form, list page will shown again.&lt;/li&gt;
    &lt;li&gt;You can see App ID like below (if App ID doesn’t exist, try page reload.&lt;br /&gt;
        &lt;img alt=&quot;&quot; src=&quot;/inline_translator/bing_ss2.png&quot; /&gt;
    &lt;/li&gt;
    &lt;li&gt;Copy App ID and paste into Bing App ID textbox of Inline Translator’s option page.&lt;br /&gt;
        &lt;img alt=&quot;&quot; src=&quot;/inline_translator/bing_ss3.png&quot; /&gt;
    &lt;/li&gt;

&lt;/ol&gt;

&lt;p&gt;That’s all. Enjoy. :)&lt;/p&gt;</description>
<category>잡담</category>
<author>김군우</author>
<guid>http://miya.pe.kr/2012/01/23/how-to-change-app-id-in-inline-translator/</guid>
<pubDate>Mon, 23 Jan 2012 11:24:57 +0900</pubDate>
</item>
<item>
<title>거의 막바지에 바뀐 CSS3 Gradients 용법</title>
<link>http://appletree.or.kr/blog/web-development/css/거의-막바지에-바뀐-css3-gradients-용법/</link>
<description>&lt;p&gt;이미 널리 쓰이고 있는 &lt;a href=&quot;http://www.w3.org/TR/css3-images/#gradients&quot;&gt;CSS3 Gradients의 용법&lt;/a&gt;이 이번에 또 바뀌었는데, 관련 &lt;a href=&quot;http://www.w3.org/News/2012#entry-9317&quot;&gt;CSS Image Values and Replaced Content Module Level 3가 지난 1월 12일에 “Last Call” draft 상태로 진입&lt;/a&gt;한 것을 보면 어떤 커다란 용법의 변경은 더는 없으리라 예상(기대)된다.&lt;/p&gt;
&lt;p&gt;우선 Linear Gradient 용법의 달라진 점.&lt;/p&gt;
&lt;p&gt;Linear Gradient의 가장 단순한 사용 예로 다름과 같은 것이 있다. (vendor prefix는 생략함)&lt;/p&gt;
&lt;pre class=&quot;textmate-source&quot;&gt;&lt;span class=&quot;source source_css&quot;&gt;&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; linear-gradient(&lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;white&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;black&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;적용하면 위에서 아래 방향으로 흰색을 시작으로 점점 짙어지면서 마지막은 검은색으로 표시된다.&lt;/p&gt;
&lt;p&gt;linear gradient function의 첫 번째 argument는 gradient의 시작점과 끝점을 잇는 기준 축인 &lt;em&gt;gradient-line&lt;/em&gt;을 지정하게 되는데, 위의 예에서처럼 생략되면 위에서 아래방향을 가리킨다. 그리고 &lt;em&gt;gradient-line&lt;/em&gt;은 &lt;code&gt;deg&lt;/code&gt; 단위를 써서 각도를 지정해 주거나, 혹은 몇몇 정의된 keywords를 쓸 수도 있다. &lt;span id=&quot;more-1754&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;이전의 spec 내용과 달라진 내용으로, 과거 &lt;code&gt;0deg&lt;/code&gt;는 왼쪽에서 오른쪽 방 &lt;em&gt;x 축&lt;/em&gt;을 기준으로 각도가 커지면 &lt;strong&gt;시계 반대 방향&lt;/strong&gt;으로 회전했으나, 지금은 밑에서 위를 가리키는 &lt;em&gt;y 축&lt;/em&gt;이 기준이며 각도가 커지면 &lt;strong&gt;시계 방향&lt;/strong&gt;으로 회전한다. 그리고 keywords의 경우 예전엔 시작점을 기준으로 했으나 이젠 &lt;code&gt;to&lt;/code&gt;와 함께 도착점을 지정해 주어야 한다. 그래서 위의 예를 &lt;em&gt;gradient-line&lt;/em&gt;을 써서 과거 용법과 새 용법을 비교하면 다음과 같다.&lt;/p&gt;
&lt;pre class=&quot;textmate-source&quot;&gt;&lt;span class=&quot;source source_css&quot;&gt;&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; linear-gradient(&lt;span class=&quot;support support_constant support_constant_property-value support_constant_property-value_css&quot;&gt;top&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;white&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;black&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;comment comment_block comment_block_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;/*&lt;/span&gt; old syntax &lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;*/&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; linear-gradient(&lt;span class=&quot;constant constant_numeric constant_numeric_css&quot;&gt;-90&lt;/span&gt;&lt;span class=&quot;keyword keyword_other keyword_other_unit keyword_other_unit_css&quot;&gt;deg&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;white&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;black&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;comment comment_block comment_block_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;/*&lt;/span&gt; old syntax &lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;*/&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; linear-gradient(to &lt;span class=&quot;support support_constant support_constant_property-value support_constant_property-value_css&quot;&gt;bottom&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;white&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;black&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;comment comment_block comment_block_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;/*&lt;/span&gt; new syntax &lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;*/&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; linear-gradient(&lt;span class=&quot;constant constant_numeric constant_numeric_css&quot;&gt;180&lt;/span&gt;&lt;span class=&quot;keyword keyword_other keyword_other_unit keyword_other_unit_css&quot;&gt;deg&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;white&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;black&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;comment comment_block comment_block_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;/*&lt;/span&gt; new syntax &lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;*/&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;&lt;em&gt;gradient-line&lt;/em&gt;의 이해는 spec 문서에 나와있는 예제 그림을 보면 쉽게 이해할 수 있는데, 아래 그림은 &lt;code&gt;background: linear-gradient(45deg, white, black);&lt;/code&gt; 스타일을 가지는 박스 모양.&lt;br /&gt;
&lt;img class=&quot;center&quot; src=&quot;/blog/images/css3-gradient-diagram.png&quot; alt=&quot;네모난 상자 모양의 그림으로 배경색이 왼쪽 아래 구석에서 흰색을 시작으로 점점 짙어지면서 오른쪽 위 구석은 검은색으로 칠해져 있다. gradient-line을 나타내는 선이 그어져 있는데, 상자의 중앙을 지나서 약 45도 각도로 기울어져 있다. gradient-line과 상자의 왼쪽 아래 그리고 오른쪽 위 구석을 평행선을 이루며 그어진 선이 교차하는 지점에 gradient-line의 시작점과 끝점이 표시되어 있다.&quot; title=&quot;gradient-line 계산법&quot; width=&quot;454&quot; height=&quot;455&quot; /&gt;&lt;/p&gt;
&lt;p&gt;다음에 Linear Gradient보다 비교적 덜 쓰여서 약간 생소할 수도 있는 Radial Gradients의 새 용법은 다음과 같이 쓰인다.&lt;/p&gt;
&lt;pre class=&quot;textmate-source&quot;&gt;&lt;span class=&quot;source source_css&quot;&gt;&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; radial-gradient(&lt;span class=&quot;constant constant_numeric constant_numeric_css&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;keyword keyword_other keyword_other_unit keyword_other_unit_css&quot;&gt;em&lt;/span&gt; &lt;span class=&quot;support support_constant support_constant_property-value support_constant_property-value_css&quot;&gt;circle&lt;/span&gt; at &lt;span class=&quot;support support_constant support_constant_property-value support_constant_property-value_css&quot;&gt;top&lt;/span&gt; &lt;span class=&quot;support support_constant support_constant_property-value support_constant_property-value_css&quot;&gt;left&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;yellow&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;blue&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;&lt;em&gt;shape&lt;/em&gt;과 (혹은) &lt;em&gt;size&lt;/em&gt;를 지정하고 &lt;em&gt;position&lt;/em&gt; 앞에 &lt;strong&gt;at&lt;/strong&gt;을 붙여준 점에 주의.&lt;br /&gt;
예전 여러 &lt;em&gt;size&lt;/em&gt; keywords 중 하나로 사용되던 &lt;code&gt;contain&lt;/code&gt;과 &lt;code&gt;cover&lt;/code&gt;는 각각 같은 의미가 있는 &lt;code&gt;closest-side&lt;/code&gt;와 &lt;code&gt;farthest-corner&lt;/code&gt;가 이미 정의되어 있기 때문에 혼동을 줄이려고 더는 사용되지 않는다.&lt;/p&gt;
&lt;p&gt;아래는 간단한 Radial Gradient의 과거 용법과 새 용법을 비교한 예.&lt;/p&gt;
&lt;pre class=&quot;textmate-source&quot;&gt;&lt;span class=&quot;source source_css&quot;&gt;&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; radial-gradient(&lt;span class=&quot;constant constant_numeric constant_numeric_css&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;keyword keyword_other keyword_other_unit keyword_other_unit_css&quot;&gt;%&lt;/span&gt;&lt;span class=&quot;constant constant_numeric constant_numeric_css&quot;&gt; 50&lt;/span&gt;&lt;span class=&quot;keyword keyword_other keyword_other_unit keyword_other_unit_css&quot;&gt;%&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_property-value support_constant_property-value_css&quot;&gt;circle&lt;/span&gt; closest-side, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;white&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;black&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;comment comment_block comment_block_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;/*&lt;/span&gt; old syntax &lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;*/&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;meta meta_selector meta_selector_css&quot;&gt;&lt;span class=&quot;entity entity_name entity_name_tag entity_name_tag_css&quot;&gt;div&lt;/span&gt; &lt;/span&gt;&lt;span class=&quot;meta meta_property-list meta_property-list_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;meta meta_property-name meta_property-name_css&quot;&gt;&lt;span class=&quot;support support_type support_type_property-name support_type_property-name_css&quot;&gt;background&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;meta meta_property-value meta_property-value_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_separator punctuation_separator_key-value punctuation_separator_key-value_css&quot;&gt;:&lt;/span&gt; radial-gradient(closest-side &lt;span class=&quot;support support_constant support_constant_property-value support_constant_property-value_css&quot;&gt;circle&lt;/span&gt; at&lt;span class=&quot;constant constant_numeric constant_numeric_css&quot;&gt; 50&lt;/span&gt;&lt;span class=&quot;keyword keyword_other keyword_other_unit keyword_other_unit_css&quot;&gt;%&lt;/span&gt;&lt;span class=&quot;constant constant_numeric constant_numeric_css&quot;&gt; 50&lt;/span&gt;&lt;span class=&quot;keyword keyword_other keyword_other_unit keyword_other_unit_css&quot;&gt;%&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;white&lt;/span&gt;, &lt;span class=&quot;support support_constant support_constant_color support_constant_color_w3c-standard-color-name support_constant_color_w3c-standard-color-name_css&quot;&gt;black&lt;/span&gt;)&lt;span class=&quot;punctuation punctuation_terminator punctuation_terminator_rule punctuation_terminator_rule_css&quot;&gt;;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;punctuation punctuation_section punctuation_section_property-list punctuation_section_property-list_css&quot;&gt;}&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;comment comment_block comment_block_css&quot;&gt;&lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;/*&lt;/span&gt; new syntax &lt;span class=&quot;punctuation punctuation_definition punctuation_definition_comment punctuation_definition_comment_css&quot;&gt;*/&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;vendor prefixes를 붙여서 사용했던 예전의 gradients 용법은 웹 브라우저가 과거 호환성을 위해 계속 지원해주겠지만, 그렇지 않고 &lt;strong&gt;미래 호환성을 생각해서 미리 prefixes를 땐 gradients properties도 함께 정의했다면, 바뀐 용법으로 적절히 수정해줘야 할 것이다.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;CSS3 관련 구체적 사용 예시와 브라우저 지원 상황은 항상 &lt;a href=&quot;http://css3please.com/&quot;&gt;CSS3 Please!&lt;/a&gt;에서 챙겨보자.&lt;/p&gt;

	&lt;div class=&quot;tags-group&quot;&gt;&lt;span class=&quot;tag-title&quot;&gt;꼬리표:&lt;/span&gt;&lt;ul class=&quot;tags&quot;&gt;&lt;li&gt;&lt;a href=&quot;http://appletree.or.kr/blog/tag/css-gradients/&quot; title=&quot;css gradients&quot; rel=&quot;tag&quot;&gt;css gradients&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://appletree.or.kr/blog/tag/css3/&quot; title=&quot;CSS3&quot; rel=&quot;tag&quot;&gt;CSS3&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description>
<category>CSS</category>
<category> css gradients</category>
<category> CSS3</category>
<author>miname</author>
<guid>http://appletree.or.kr/blog/web-development/css/거의-막바지에-바뀐-css3-gradients-용법/</guid>
<pubDate>Sun, 22 Jan 2012 23:07:30 +0900</pubDate>
</item>
<item>
<title>맥에서 VMWare Fusion을 사용하면서 윈도7을 사용하는데 IE에서 공유된 맥 폴더의 HTML 파일을 읽어오지...</title>
<link>http://feedproxy.google.com/~r/pageoff/FNck/~3/gqqWwQoyEC4/16147559174</link>
<description>&lt;img src=&quot;http://30.media.tumblr.com/tumblr_ly2qiihQx71qb7c9eo1_500.jpg&quot;/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;맥에서 VMWare Fusion을 사용하면서 윈도7을 사용하는데 IE에서 공유된 맥 폴더의 HTML 파일을 읽어오지 못하는 상황이 있습니다. 이것은 IE의 보안 정책때문으로 IE의 인터넷 옵션에서 ‘보호 모드 사용’을 해제하면 해결됩니다.&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/pageoff/FNck/~4/gqqWwQoyEC4&quot; height=&quot;1&quot; width=&quot;1&quot;/&gt;</description>
<category>MAC</category>
<category> VMWARE</category>
<category> WINDOWS 7</category>
<category> IE</category>
<category> 보호모드사용</category>
<author />
<guid>http://feedproxy.google.com/~r/pageoff/FNck/~3/gqqWwQoyEC4/16147559174</guid>
<pubDate>Fri, 20 Jan 2012 10:51:54 +0900</pubDate>
</item>
<item>
<title>CSS3 2D Transforms Module Example</title>
<link>http://hyeonseok.com/docs/css/css3-2d-transform.php</link>
<description>&lt;p&gt;W3C &lt;a href=&quot;http://www.w3.org/TR/css3-2d-transforms/&quot;&gt;CSS 2D Transforms Module Level 3(working draft)&lt;/a&gt; 예제입니다. 스펙이 완성되지 않아서 제조사 접두어(-moz, -o-, -webkit-, -ms-)를 사용하였습니다.&lt;/p&gt;

&lt;h2&gt;non-transformed&lt;/h2&gt;
&lt;p&gt;트랜스폼이 적용되지 않은 박스입니다.&lt;/p&gt;
&lt;div class=&quot;example&quot;&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2&gt;transform&lt;/h2&gt;
&lt;p&gt;트랜스폼 함수(transform function)를 값으로 하여 2D 트랜스폼을 적용합니다. 트랜스폼 함수는 SVG의 것과 비슷합니다.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;div {
	trasform: scale(0.7);
}&lt;/code&gt;&lt;/pre&gt;
&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: scale(0.7); -gecko-transform: scale(0.7); -o-transform: scale(0.7); -ms-transform: scale(0.7); transform: scale(0.7)&quot;&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2&gt;transform-origin&lt;/h2&gt;
&lt;p&gt;트랜스폼의 기준점을 변경할 수 있게 해줍니다.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;div {
	trasform: scale(0.7);
	trasform-origin: 0 0;
}&lt;/code&gt;&lt;/pre&gt;
&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: scale(0.7); -gecko-transform: scale(0.7); -o-transform: scale(0.7); -ms-transform: scale(0.7); transform: scale(0.7); -webkit-transform-origin: 0 0; -gecko-transform-origin: 0 0; -o-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0&quot;&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2&gt;transform functions&lt;/h2&gt;
&lt;p&gt;transform 속성의 값으로 사용할 수 있는 트랜스폼 함수들입니다.&lt;/p&gt;

&lt;h3&gt;transform: matrix(1, 0, 0, 1, 10, 10);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: matrix(1, 0, 0, 1, 10, 10); -gecko-transform: matrix(1, 0, 0, 1, 10, 10); -o-transform: matrix(1, 0, 0, 1, 10, 10); -ms-transform: matrix(1, 0, 0, 1, 10, 10); transform: matrix(1, 0, 0, 1, 10, 10)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: translate(10px, 10px);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: translate(10px, 10px); -gecko-transform: translate(10px, 10px); -o-transform: translate(10px, 10px); -ms-transform: translate(10px, 10px); transform: translate(10px, 10px)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: translateX(10px);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: translateX(10px); -gecko-transform: translateX(10px); -o-transform: translateX(10px); -ms-transform: translateX(10px); transform: translateX(10px)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: translateY(10px);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: translateY(10px); -gecko-transform: translateY(10px); -o-transform: translateY(10px); -ms-transform: translateY(10px); transform: translateY(10px)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: scale(1.5);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: scale(1.5); -gecko-transform: scale(1.5); -o-transform: scale(1.5); -ms-transform: scale(1.5); transform: scale(1.5)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: scaleX(1.5);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: scaleX(1.5); -gecko-transform: scaleX(1.5); -o-transform: scaleX(1.5); -ms-transform: scaleX(1.5); transform: scaleX(1.5)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: scaleY(1.5);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: scaleY(1.5); -gecko-transform: scaleY(1.5); -o-transform: scaleY(1.5); -ms-transform: scaleY(1.5); transform: scaleY(1.5)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: rotate(45deg);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: rotate(45deg); -gecko-transform: rotate(45deg); -o-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: skewX(30deg);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: skewX(30deg); -gecko-transform: skewX(30deg); -o-transform: skewX(30deg); -ms-transform: skewX(30deg); transform: skewX(30deg)&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h3&gt;transform: skewY(30deg);&lt;/h3&gt;&lt;div class=&quot;example&quot;&gt;&lt;div style=&quot;-webkit-transform: skewY(30deg); -gecko-transform: skewY(30deg); -o-transform: skewY(30deg); -ms-transform: skewY(30deg); transform: skewY(30deg)&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://me2day.net/posts/new?new_post[body]=&quot;CSS3 2D Transforms Module Example&quot;:http://hyeonseok.com/docs/css/css3-2d-transform.php&quot; &gt;미투데이로 한마디&lt;/a&gt; | &lt;a href=&quot;http://twitter.com/?status=CSS3 2D Transforms Module Example http://hyeonseok.com/docs/css/css3-2d-transform.php&quot;&gt;트위터로 한마디&lt;/a&gt; | &lt;a href=&quot;http://www.facebook.com/share.php?u=http://hyeonseok.com/docs/css/css3-2d-transform.php&quot;&gt;페이스북에 한마디&lt;/a&gt;&lt;/p&gt;</description>
<category />
<author />
<guid>http://hyeonseok.com/docs/css/css3-2d-transform.php</guid>
<pubDate>Fri, 20 Jan 2012 10:38:21 +0900</pubDate>
</item>
</channel>
</rss>

