[CSS] button 링크 효과 없애기

WEB/HTML & CSS 2015. 3. 9. 13:29

 버튼은 이미지와 달리 클릭시 이벤트를 주는 성격으로 링크시 걸리는 테두리 및 효과등에 차이가 있다.

 

outline:0;

 

정규표현식

WEB/JAVA script 2015. 3. 4. 14:15

글자 css

WEB/HTML & CSS 2015. 2. 23. 17:56
[css] 자간, 어간, 행간  간격조절
 
letter-spacing - [자간] 글자사이의 간격
[속성값] 0, 1, -1
[ex] letter-spacing { 0.05em; }
[ex] letter-spacing { 0.5px; }
 
word-spacing - [어간] 단어사이의 간격
[속성값] 0, 1, -1
[ex] word-spacing { -5px; }
 
line-height - [행간] 줄간격 조절 
[속성값] px, %, 배수값(1.0, 1.2, 1.5)
[ex] line-height { 12%; }


iframe css 제어

WEB/JAVA script 2015. 2. 21. 23:10

http://code.tutsplus.com/tutorials/how-to-inject-custom-html-and-css-into-an-iframe--net-22826

 

 

http://jsbin.com/

facebook 페이스북 플러그인 달기

WEB/HTML & CSS 2015. 2. 21. 20:29
https://developers.facebook.com/docs/plugins?locale=ko_KR

 

slide_ 유투브 재생정지 (iframe)

WEB/HTML & CSS 2015. 2. 16. 04:12

slide_ 유투브 재생정지 (iframe)

 

http://jsfiddle.net/jide/gxn1xgof/

jquery 공부하자

WEB/JAVA script 2015. 2. 16. 03:15

 

jQuery Homepage

http://www.jquery.com

 

 

jQuery Homepage 한글번역

http://www.websamo.com

 

jQuery 블로그

http://findfun.tistory.com/

http://www.sqler.com/390805

유투브 썸네일 이미지 주소

WEB/HTML & CSS 2015. 2. 15. 12:00
http://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api

 

반응형 동영상 슬라이드

WEB/JAVA script 2015. 2. 15. 09:20
http://bxslider.com/examples/video

 

 

 

멀티라인 말줄임

WEB/HTML & CSS 2015. 2. 11. 20:05

http://blog.mckwon.com/425

http://alwaystwenties.tistory.com/134

 

 

ul.circle {list-style-type: circle;}
ul.square {list-style-type: square;}
ol.upper-roman {list-style-type: upper-roman;}
ol.lower-alpha {list-style-type: lower-alpha;}

 

li{list-style: square inside;} 로 해결.

 

예제

http://www.w3schools.com/cssref/pr_list-style-type.asp

http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_textoverflow

 

document.getElementById("myDIV").style.textOverflow = "ellipsis";

object.style.textOverflow="clip|ellipsis|string|initial|inherit"