<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>수라의 티스토리</title>
    <link>https://hdoc79.tistory.com/</link>
    <description>성창이가 웹표준과 친해지기 위해 만든 공간</description>
    <language>ko</language>
    <pubDate>Wed, 26 Aug 2026 21:04:03 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>수라</managingEditor>
    <item>
      <title>var와 let과 호이스팅</title>
      <link>https://hdoc79.tistory.com/412</link>
      <description>&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;span style=&quot;font-family: GungSeo, serif;&quot;&gt;잡설 : 한동안 실무를 놨더니 기본개념부터 가물가물하다. 나 스스로를 위해 기초부터 다시 되짚어보고자 한다..&lt;/span&gt;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;var는 es6 이전 변수를 정의할때 사용하는 구문&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;자비로운 javascript 덕분에 var는 오류가 날것 같은 상황에서도 에러를 내뱉지 않음&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;예를 들어.. 첫번째 케이스를 보자.&lt;/p&gt;
&lt;pre id=&quot;code_1661386879713&quot; class=&quot;javascript&quot; data-ke-language=&quot;javascript&quot; data-ke-type=&quot;codeblock&quot;&gt;&lt;code&gt;console.log(a);
var a = 0;
console.log(a);

// 결과
undefined
0&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;해당 코드는 일반인이 봤을땐 코드 순서대로 실행할것 같다고 판단하겠지?? java나 C++에서도 그렇게 판단할것 같다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;근데 javascript는 최초 브라우져 엔진이 코드에 접근했을때 변수나 함수 선언된 놈들을 끄집어내 메모리에 저장한다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;최상단 전역으로 올리는 행위 즉 호이스팅 한다고 표현한다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;그렇다보니 console을 실행하기 전에 변수 a를 선언한걸 먼저 호이스팅 하기 때문에 undefined가 출력된다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이루 a를 0으로 할당하고 두번째 console을 실행할때 0의 값이 출력되는것&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;또는 이런 경우도 있다... 두번째 케이스.&lt;/p&gt;
&lt;pre id=&quot;code_1661386955297&quot; class=&quot;javascript&quot; data-ke-language=&quot;javascript&quot; data-ke-type=&quot;codeblock&quot;&gt;&lt;code&gt;for (var i=0; i &amp;lt; 5; i++) {
    console.log(i)
}
console.log(i)

// 결과
0
1
2
3
4
5&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;저기서 변수 i는 지역변수다. 전역에서 접근되면 안되는..&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;근데 보는바와 같이 접근이 가능해서 5가 출력된다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;var로 선언된 지역변수는 function에서만 보장된다는 블라블라....&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이걸 보완하고자 나온게 let&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;첫번째 케이스를 let으로 바꿔보자&lt;/p&gt;
&lt;pre id=&quot;code_1661387397754&quot; class=&quot;javascript&quot; data-ke-language=&quot;javascript&quot; data-ke-type=&quot;codeblock&quot;&gt;&lt;code&gt;console.log(a);
let a = 0;
console.log(a);

// 결과
Uncaught ReferenceError: a is not defined at &amp;lt;anonymous&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;에러가 난다. a는 아직 정의되지 않았다고..&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;var와 마찬가지로로 호이스팅은 한다. 대신 접근할 수 없는 TDZ라는 곳에 임시저장된 뒤 선언할때 접근 가능한 저장소로 옮겨진다고 한다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre id=&quot;code_1661387704045&quot; class=&quot;javascript&quot; data-ke-language=&quot;javascript&quot; data-ke-type=&quot;codeblock&quot;&gt;&lt;code&gt;for (let j=0; j &amp;lt; 5; j++) {
    console.log(j)
}
console.log(j)

// 결과
0
1
2
3
4
Uncaught ReferenceError: j is not defined at &amp;lt;anonymous&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;위와 마찬가지 에러가 난다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;이걸 통해 var와 let의 차이.. 그리고 호이스팅이 뭔지 개념에 대해 이해해보자.&lt;/p&gt;</description>
      <category>web standard/script</category>
      <category>es6</category>
      <category>Hosting</category>
      <category>let</category>
      <category>var</category>
      <category>호이스팅</category>
      <author>수라</author>
      <guid isPermaLink="true">https://hdoc79.tistory.com/412</guid>
      <comments>https://hdoc79.tistory.com/412#entry412comment</comments>
      <pubDate>Thu, 25 Aug 2022 09:39:07 +0900</pubDate>
    </item>
    <item>
      <title>브라우저 핵 종결자</title>
      <link>https://hdoc79.tistory.com/411</link>
      <description>&lt;p&gt;&lt;span style=&quot;color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;[출처]http://naiyumie.inour.net/archives/2471&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Internet Explorer -인터넷 익스플로러&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Selector Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;/* IE 6 and below */&lt;br /&gt;* html .selector &amp;nbsp;{}&lt;br /&gt;.suckyie6.selector {} /* .suckyie6 can be any unused class */&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 7 and below */&lt;br /&gt;.selector, {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 7 */&lt;br /&gt;&lt;span style=&quot;font-size: 14.4px;&quot;&gt;*:first-child+html .selector {}&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14.4px;&quot;&gt;.selector, x:-IE7 {}&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14.4px;&quot;&gt;*+html .selector {}&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Everything but IE 6 */&lt;br /&gt;html &amp;gt; body .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Everything but IE 6/7 */&lt;br /&gt;html &amp;gt; /**/ body .selector {}&lt;br /&gt;head ~ /* */ body .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Everything but IE 6/7/8 */&lt;br /&gt;:root *&amp;gt; .selector {}&lt;br /&gt;body:last-child .selector {}&lt;br /&gt;body:nth-of-type(1) .selector {}&lt;br /&gt;body:first-of-type .selector {}&lt;br /&gt;Property ⁄ Value Hacks&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 6 */&lt;br /&gt;.selector { _color: blue; }&lt;br /&gt;.selector { -color: blue; }&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 6/7 – any combination of these characters:&lt;br /&gt;! $ &amp;amp; * ( ) = % + @ , . / ` [ ] # ~ ? : &amp;lt; &amp;gt; | */&lt;br /&gt;.selector { !color: blue; }&lt;br /&gt;.selector { $color: blue; }&lt;br /&gt;.selector { &amp;amp;color: blue; }&lt;br /&gt;.selector { *color: blue; }&lt;br /&gt;/* … */&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 6/7 – acts as an !important */&lt;br /&gt;.selector { color: blue !ie; }&lt;br /&gt;/* string after ! can be anything */&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 8/9 */&lt;br /&gt;.selector { color: blue\0/; }&lt;br /&gt;/* must go at the END of all rules */&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 9/10 */&lt;br /&gt;.selector:nth-of-type(1n) { color: blue\9; }&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 6/7/8/9/10 */&lt;br /&gt;.selector { color: blue\9; }&lt;br /&gt;.selector { color/*\**/: blue\9; }&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Everything but IE 6 */&lt;br /&gt;.selector { color/**/: blue; }&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;Media Query Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;/* IE 6/7 */&lt;br /&gt;@media screen\9 {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 6/7/8 */&lt;br /&gt;@media \0screen\,screen\9 {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 8 */&lt;br /&gt;@media \0screen {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 8/9/10 &amp;amp; Opera */&lt;br /&gt;@media screen\0 {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 9/10, Firefox 3.5+, Opera */&lt;br /&gt;@media screen and (min-resolution: +72dpi) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 9/10 */&lt;br /&gt;@media screen and (min-width:0\0) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 10+ */&lt;br /&gt;@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Everything but IE 6/7/8 */&lt;br /&gt;@media screen and (min-width: 400px) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;span style=&quot;font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;&amp;nbsp;JavaScript Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;/* IE &amp;lt;= 8 */&lt;br /&gt;var isIE = ‘\v’==’v’;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 6 */&lt;br /&gt;(checkIE = document.createElement(“b”)).innerHTML = “&amp;lt;!–[if IE 6]&amp;gt;&amp;nbsp;var isIE = checkIE.getElementsByTagName(“i”).length == 1;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 7 */&lt;br /&gt;(checkIE = document.createElement(“b”)).innerHTML = “&amp;lt;!–[if IE 7]&amp;gt;&amp;nbsp;var isIE = checkIE.getElementsByTagName(“i”).length == 1;&lt;br /&gt;navigator.appVersion.indexOf(“MSIE 7.”)!=-1&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 8 */&lt;br /&gt;(checkIE = document.createElement(“b”)).innerHTML = “&amp;lt;!–[if IE 8]&amp;gt;&amp;nbsp;var isIE = checkIE.getElementsByTagName(“i”).length == 1;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 9 */&lt;br /&gt;(checkIE = document.createElement(“b”)).innerHTML = “&amp;lt;!–[if IE 9]&amp;gt;&amp;nbsp;var isIE = checkIE.getElementsByTagName(“i”).length == 1;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 10 */&lt;br /&gt;var isIE = eval(“/*@cc_on!@*/false”) &amp;amp;&amp;amp; document.documentMode === 10;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* IE 10 */&lt;br /&gt;var isIE = document.body.style.msTouchAction != undefined;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div style=&quot;color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;/div&gt;&lt;div style=&quot;color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;hr style=&quot;box-sizing: content-box; height: 0px;&quot;&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px;&quot;&gt;&amp;nbsp;&lt;span style=&quot;font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Firefox -파이어폭스&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Selector Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;/* Firefox 1.5 */&lt;br /&gt;body:empty .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 2+ */&lt;br /&gt;.selector, x:-moz-any-link {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 3+ */&lt;br /&gt;.selector, x:-moz-any-link; x:default {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 3.5+ */&lt;br /&gt;body:not(:-moz-handler-blocked) .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;Media Query Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;/* Firefox 3.5+, IE 9/10, Opera */&lt;br /&gt;@media screen and (min-resolution: +72dpi) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 3.6+ */&lt;br /&gt;@media screen and (-moz-images-in-menus:0) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 4+ */&lt;br /&gt;@media screen and (min–moz-device-pixel-ratio:0) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;JavaScript Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;/* Firefox */&lt;br /&gt;var isFF = !!navigator.userAgent.match(/firefox/i);&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 2 – 13 */&lt;br /&gt;var isFF = !!window.globalStorage;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 2/3 */&lt;br /&gt;var isFF = /a/[-1]==’a’;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 3 */&lt;br /&gt;var isFF = (function x(){})[-5]==’x’;&lt;br /&gt;Miscellaneous&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Firefox 3+ */&lt;br /&gt;@-moz-document url-prefix() {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;hr style=&quot;box-sizing: content-box; height: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Chrome -크롬&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;&amp;nbsp;Selector Hacks&lt;/strong&gt;&lt;br /&gt;/* Chrome 24- and Safari 5- */&lt;br /&gt;::made-up-pseudo-element, .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;Media Query Hacks&lt;/strong&gt;&lt;br /&gt;/* Chrome, Safari 3+ */&lt;br /&gt;@media screen and (-webkit-min-device-pixel-ratio:0) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;JavaScript Hacks&lt;/strong&gt;&lt;br /&gt;/* Chrome */&lt;br /&gt;var isChrome = !!window.chrome;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;hr style=&quot;box-sizing: content-box; height: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Safari -사파리&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Selector Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;/* Safari 2/3 */&lt;br /&gt;html[xmlns*=””] body:last-child .selector {}&lt;br /&gt;html[xmlns*=””]:root .selector &amp;nbsp;{}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Safari 2/3.1, Opera 9.25 */&lt;br /&gt;*|html[xmlns*=””] .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Safari 5- and Chrome 24- */&lt;br /&gt;::made-up-pseudo-element, .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;Media Query Hacks&lt;/strong&gt;&lt;br /&gt;/* Safari 3+, Chrome */&lt;br /&gt;@media screen and (-webkit-min-device-pixel-ratio:0) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;JavaScript Hacks&lt;/strong&gt;&lt;br /&gt;/* Safari */&lt;br /&gt;var isSafari = /a/.__proto__==’//’;&lt;/p&gt;&lt;hr style=&quot;box-sizing: content-box; height: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;Opera -오페라&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;&amp;nbsp;Selector Hacks&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;/* Opera 9.25, Safari 2/3.1 */&lt;br /&gt;*|html[xmlns*=””] .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Opera 9.27 and below, Safari 2 */&lt;br /&gt;html:first-child .selector {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Opera 9.5+ */&lt;br /&gt;noindex:-o-prefocus, .selector {}&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;strong&gt;&amp;nbsp;Media Query Hacks&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;/* Opera 7 */&lt;br /&gt;@media all and (min-width: 0px){}&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;/* Opera 12- */&lt;br /&gt;@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Opera, Firefox 3.5+, IE 9/10 */&lt;br /&gt;@media screen and (min-resolution: +72dpi) {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Opera, IE 8/9/10 */&lt;br /&gt;@media screen {}&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;&lt;strong&gt;&amp;nbsp;JavaScript Hacks&lt;/strong&gt;&lt;br /&gt;/* Opera 9.64- */&lt;br /&gt;var isOpera = /^function \(/.test([].sort);&lt;/p&gt;&lt;p style=&quot;line-height: 1.6; margin-right: 0px; margin-bottom: 1.6em; margin-left: 0px; color: rgb(84, 64, 33); font-family: Verdana, Arial, ���C���I, Meiryo, &amp;quot;�q���M�m�p�SPro W3&amp;quot;, &amp;quot;Hiragino Kaku Gothic Pro&amp;quot;, &amp;quot;�l�r �o�S�V�b�N&amp;quot;, sans-serif; font-size: 14.4px;&quot;&gt;&lt;br /&gt;/* Opera 12- */&lt;br /&gt;var isOpera = !!window.opera;&lt;/p&gt;</description>
      <category>web standard/css</category>
      <author>수라</author>
      <guid isPermaLink="true">https://hdoc79.tistory.com/411</guid>
      <comments>https://hdoc79.tistory.com/411#entry411comment</comments>
      <pubDate>Thu, 6 Oct 2016 17:45:22 +0900</pubDate>
    </item>
    <item>
      <title>마우스 휠 이벤트 체크</title>
      <link>https://hdoc79.tistory.com/410</link>
      <description>&lt;div class=&quot;colorscripter-code&quot; style=&quot;overflow: auto; position: relative !important;&quot;&gt;&lt;p style=&quot;color: rgb(1, 1, 1); font-family: Consolas, &amp;quot;Liberation Mono&amp;quot;, Menlo, Courier, monospace !important;&quot;&gt;출처:&amp;nbsp;http://recoveryman.tistory.com/120&lt;/p&gt;
&lt;p style=&quot;color: rgb(1, 1, 1); font-family: Consolas, &amp;quot;Liberation Mono&amp;quot;, Menlo, Courier, monospace !important;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;iframe width=&quot;100%&quot; height=&quot;300&quot; src=&quot;//jsfiddle.net/t9ee4r4z/1/embedded/result,html,css,js&quot; allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#010101&quot; face=&quot;Consolas, Liberation Mono, Menlo, Courier, monospace&quot;&gt;&lt;br /&gt;&lt;/font&gt;&lt;table class=&quot;colorscripter-code-table&quot; style=&quot;color: rgb(1, 1, 1); font-family: Consolas, &amp;quot;Liberation Mono&amp;quot;, Menlo, Courier, monospace !important; margin: 0px; padding: 0px; border: none; background-color: rgb(250, 250, 250); border-radius: 4px;&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;padding:6px; border-right:2px solid #e5e5e5&quot;&gt;&lt;div style=&quot;margin:0; padding:0; word-break:normal; text-align:right; color:#666; font-family:Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height:130%&quot;&gt;&lt;div style=&quot;line-height:130%&quot;&gt;1&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;2&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;3&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;4&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;5&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;6&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;7&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;8&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;9&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;10&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;11&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;12&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;13&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;14&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;15&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;16&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;17&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;18&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;19&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;20&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;21&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;22&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;23&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;24&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;25&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;26&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;27&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;28&lt;/div&gt;&lt;div style=&quot;line-height:130%&quot;&gt;29&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;td style=&quot;padding:6px 0&quot;&gt;&lt;div style=&quot;margin:0; padding:0; color:#010101; font-family:Consolas, 'Liberation Mono', Menlo, Courier, monospace !important; line-height:130%&quot;&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;!DOCTYPE&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#0a9989&quot;&gt;html&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;html&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#0a9989&quot;&gt;lang&lt;/span&gt;=&lt;span style=&quot;color:#df5000&quot;&gt;&quot;ko&quot;&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;head&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;meta&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#0a9989&quot;&gt;charset&lt;/span&gt;=&lt;span style=&quot;color:#df5000&quot;&gt;&quot;UTF-8&quot;&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;title&lt;/span&gt;&amp;gt;Document&amp;lt;/&lt;span style=&quot;color:#066de2&quot;&gt;title&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;style&lt;/span&gt;&amp;gt;&amp;lt;/&lt;span style=&quot;color:#066de2&quot;&gt;style&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;script&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#0a9989&quot;&gt;src&lt;/span&gt;=&lt;span style=&quot;color:#df5000&quot;&gt;&quot;http://code.jquery.com/jquery-1.11.3.min.js&quot;&lt;/span&gt;&amp;gt;&amp;lt;/&lt;span style=&quot;color:#066de2&quot;&gt;script&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;script&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(&lt;span style=&quot;color:#a71d5d&quot;&gt;function&lt;/span&gt;(){&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(&lt;span style=&quot;color:#63a35c&quot;&gt;&quot;html,&amp;nbsp;body&quot;&lt;/span&gt;).on(&lt;span style=&quot;color:#63a35c&quot;&gt;'mousewheel&amp;nbsp;DOMMouseScroll'&lt;/span&gt;,&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;function&lt;/span&gt;(e)&amp;nbsp;{&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;var&lt;/span&gt;&amp;nbsp;E&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;=&lt;/span&gt;&amp;nbsp;e.originalEvent;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;delta&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;=&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#0099cc&quot;&gt;0&lt;/span&gt;;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color:#066de2&quot;&gt;console&lt;/span&gt;.log(E);&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;if&lt;/span&gt;&amp;nbsp;(E.detail)&amp;nbsp;{&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;delta&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;=&lt;/span&gt;&amp;nbsp;E.detail&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;*&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color:#0099cc&quot;&gt;40&lt;/span&gt;;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(&lt;span style=&quot;color:#63a35c&quot;&gt;'body'&lt;/span&gt;).text(delta);&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;span style=&quot;color:#a71d5d&quot;&gt;else&lt;/span&gt;{&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;delta&amp;nbsp;&lt;span style=&quot;color:#a71d5d&quot;&gt;=&lt;/span&gt;&amp;nbsp;E.wheelDelta;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(&lt;span style=&quot;color:#63a35c&quot;&gt;'body'&lt;/span&gt;).text(delta);&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;};&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/&lt;span style=&quot;color:#066de2&quot;&gt;script&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;lt;/&lt;span style=&quot;color:#066de2&quot;&gt;head&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;lt;&lt;span style=&quot;color:#066de2&quot;&gt;body&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;lt;/&lt;span style=&quot;color:#066de2&quot;&gt;body&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;lt;/&lt;span style=&quot;color:#066de2&quot;&gt;html&lt;/span&gt;&amp;gt;&lt;/div&gt;&lt;div style=&quot;padding:0 6px; white-space:pre; line-height:130%&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;text-align:right; margin-top:-13px; margin-right:5px; font-size:9px; font-style:italic&quot;&gt;&lt;a href=&quot;http://colorscripter.com/info#e&quot; target=&quot;_blank&quot; style=&quot;color: rgb(229, 229, 229);&quot;&gt;Colored by Color Scripter&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;td style=&quot;vertical-align:bottom; padding:0 2px 4px 0&quot;&gt;&lt;a href=&quot;http://colorscripter.com/info#e&quot; target=&quot;_blank&quot; style=&quot;color: white;&quot;&gt;&lt;span style=&quot;font-size: 9px; word-break: normal; background-color: rgb(229, 229, 229); border-radius: 10px; padding: 1px;&quot;&gt;cs&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>web standard/jquery</category>
      <author>수라</author>
      <guid isPermaLink="true">https://hdoc79.tistory.com/410</guid>
      <comments>https://hdoc79.tistory.com/410#entry410comment</comments>
      <pubDate>Wed, 5 Oct 2016 10:31:08 +0900</pubDate>
    </item>
    <item>
      <title>OS &amp;amp; 버젼 체크</title>
      <link>https://hdoc79.tistory.com/409</link>
      <description>&lt;p&gt;/* OS &amp;amp; 버젼 체크 */&lt;br /&gt;&lt;/p&gt;&lt;p&gt;function getOSVer() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var mobileOS;&amp;nbsp;&amp;nbsp;&amp;nbsp; // will either be iOS, Android or unknown&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var mobileOSver; // this is a string, use Number(mobileOSver) to convert&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var uaindex;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // determine OS&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( agentString.match(/iPad/i) || agentString.match(/iPhone/i) ) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; mobileOS = 'iOS';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; uaindex&amp;nbsp; = agentString.indexOf( 'OS ' );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if ( agentString.match(/Android/i) ) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; mobileOS = 'Android';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; uaindex&amp;nbsp; = agentString.indexOf( 'Android ' );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; mobileOS = 'unknown';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // determine version&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( mobileOS === 'iOS'&amp;nbsp; &amp;amp;&amp;amp;&amp;nbsp; uaindex &amp;gt; -1 ) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; mobileOSver = agentString.substr( uaindex + 3, 1 ).replace( '_', '.' );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if ( mobileOS === 'Android'&amp;nbsp; &amp;amp;&amp;amp;&amp;nbsp; uaindex &amp;gt; -1 ) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; mobileOSver = agentString.substr( uaindex + 8, 1 );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; mobileOSver = 'unknown';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (mobileOS === 'iOS') {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;body&quot;).addClass(mobileOS+mobileOSver);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (mobileOS === 'Android') {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;body&quot;).addClass(mobileOS+mobileOSver);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;&lt;/p&gt;</description>
      <category>web standard/script</category>
      <author>수라</author>
      <guid isPermaLink="true">https://hdoc79.tistory.com/409</guid>
      <comments>https://hdoc79.tistory.com/409#entry409comment</comments>
      <pubDate>Fri, 24 Apr 2015 15:34:31 +0900</pubDate>
    </item>
    <item>
      <title>[coc]10홀 클랜전 맵</title>
      <link>https://hdoc79.tistory.com/408</link>
      <description>&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2610D04A552F6C8F18&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2610D04A552F6C8F18&quot; width=&quot;740&quot; height=&quot;416&quot; filename=&quot;KakaoTalk_20150310_231008253.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/267DD54A552F6C9123&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F267DD54A552F6C9123&quot; width=&quot;740&quot; height=&quot;416&quot; filename=&quot;KakaoTalk_20150310_231003876.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/250CEC4A552F6C9219&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F250CEC4A552F6C9219&quot; width=&quot;740&quot; height=&quot;416&quot; filename=&quot;KakaoTalk_20150310_231003586.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/25150A4A552F6C9213&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F25150A4A552F6C9213&quot; width=&quot;740&quot; height=&quot;416&quot; filename=&quot;KakaoTalk_20150310_231003240.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/237B0D4A552F6C9424&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F237B0D4A552F6C9424&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_231002979.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2520C54A552F6C950C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2520C54A552F6C950C&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_231002676.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2308B84A552F6C971D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2308B84A552F6C971D&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_231002210.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/24324D4E552F6C9907&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F24324D4E552F6C9907&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_231001788.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2428A94E552F6C9A0D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2428A94E552F6C9A0D&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_231001559.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2537064E552F6C9C04&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2537064E552F6C9C04&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_231000540.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2303714E552F6C9E23&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2303714E552F6C9E23&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_231000276.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/231ADB4E552F6CA017&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F231ADB4E552F6CA017&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230958134.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2709384E552F6CA321&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2709384E552F6CA321&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230958076.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/222ADE4E552F6CA50C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F222ADE4E552F6CA50C&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230956451.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26797948552F6CA823&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26797948552F6CA823&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230956275.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/21799D48552F6CAB23&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F21799D48552F6CAB23&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230955525.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2164A548552F6CAC2F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2164A548552F6CAC2F&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230955477.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/22752548552F6CAE26&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F22752548552F6CAE26&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230954774.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27619C48552F6CB030&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27619C48552F6CB030&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230954593.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/27313D48552F6CB202&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F27313D48552F6CB202&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230953835.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 740px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2516EF48552F6CB412&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2516EF48552F6CB412&quot; width=&quot;740&quot; height=&quot;554&quot; filename=&quot;KakaoTalk_20150310_230953765.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>life/game</category>
      <category>COC</category>
      <category>클랜전</category>
      <author>수라</author>
      <guid isPermaLink="true">https://hdoc79.tistory.com/408</guid>
      <comments>https://hdoc79.tistory.com/408#entry408comment</comments>
      <pubDate>Thu, 16 Apr 2015 17:06:13 +0900</pubDate>
    </item>
  </channel>
</rss>