본문 바로가기

분류 전체보기

(207)
string.split('') 그리고 array.join('') string.split() white space 없을 때, 'abc'.split(''); //['a','b','c'] split a string into an array of its character white space 있을 때, 'abc'.split(' '); //['abc'] 그 string 그대로 array의 원소로 넣어준다. array.join() white space 없을 때, ['a','b','c'].join(''); //'abc' array에 있는 원소를 합쳐서 하나의 string으로 white space 있을 때, ['a','b','c'].join(' '); //'a b c' 하나의 string으로 만들어주는 것은 같지만 array 원소와 원소 사이에 한 칸 공백
스크롤을 내리는지 올리는지 보호되어 있는 글입니다.
스크롤 할 때 특정 class 추가, 멈추면 제거 보호되어 있는 글입니다.
Transition 보호되어 있는 글입니다.
transform 보호되어 있는 글입니다.
reset css * { box-sizing: border-box; margin: 0; } body { font-family: "DM Sans", sans-serif; } /* Reset CSS */ a { text-decoration: none; color: inherit; } button, input, textarea { font-family: "DM Sans", sans-serif; font-size:16px; } button:focus, button:active, input:focus, input:active, textarea:focus, textarea:active{ box-shadow:none; outline:none; } ol, ul, li { list-style:none; padding-left:0; mar..
:root 색상 정리 보호되어 있는 글입니다.
button hover했을 때 아래줄 생기게 하기 button::after { content: ""; width: 0; height: 2px; background-color: #0066ff; position: absolute; bottom: 0; left: 0; transition: width 250ms ease-in; } button:hover::after { width: 100%; }