검색결과 리스트
WEB/HTML & CSS에 해당되는 글 15건
- 2015.03.09 [CSS] button 링크 효과 없애기
- 2015.02.23 글자 css
- 2015.02.21 facebook 페이스북 플러그인 달기
- 2015.02.16 slide_ 유투브 재생정지 (iframe)
- 2015.02.15 유투브 썸네일 이미지 주소
- 2015.02.11 멀티라인 말줄임
- 2014.11.20 [Reference] 관리자 페이지
- 2014.10.29 마우스커서 cursor style
- 2014.10.29 html5
- 2014.09.22 [CSS] css discuss
글
[CSS] button 링크 효과 없애기
버튼은 이미지와 달리 클릭시 이벤트를 주는 성격으로 링크시 걸리는 테두리 및 효과등에 차이가 있다.
outline:0;
설정
트랙백
댓글
글
글자 css
설정
트랙백
댓글
글
글
글
글
멀티라인 말줄임
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"
설정
트랙백
댓글
글
글
마우스커서 cursor style
<p style="cursor:auto">Auto</p>
<p style="cursor:crosshair">Crosshair</p>
<p style="cursor:default">Default</p>
<p style="cursor:pointer">Pointer</p>
<p style="cursor:move">Move</p>
<p style="cursor:e-resize">e-resize</p>
<p style="cursor:ne-resize">ne-resize</p>
<p style="cursor:nw-resize">nw-resize</p>
<p style="cursor:n-resize">n-resize</p>
<p style="cursor:se-resize">se-resize</p>
<p style="cursor:sw-resize">sw-resize</p>
<p style="cursor:s-resize">s-resize</p>
<p style="cursor:w-resize">w-resize</p>
<p style="cursor:text">text</p>
<p style="cursor:wait">wait</p>
<p style="cursor:help">help</p>
Auto
Crosshair
Default
Pointer
Move
e-resize
ne-resize
nw-resize
n-resize
se-resize
sw-resize
s-resize
w-resize
text
wait
help
설정
트랙백
댓글
글
html5
TweenMax 를 비롯한 jquery를 이용한 효과들.
http://greensock.com/