IT/CSS
textarea 크기조절 css
IT/CSS
textarea 크기조절 css
IT/CSS
reset.css
전체 브라우저에 같은 아웃풋을 내기위해 초기 리셋을 하는것이 좋습니다. 참고. https://meyerweb.com/eric/tools/css/reset/
IT/CSS
a태그 :hover 시 움직임
a태그 :hover 시 글자가 움직이는 것이 보이는데 해결방법은 hover시 letter-spacing:-0.88px; 로 움직임을 방지할수있다. :hover{letter-spacing: -0.88px;}
IT/CSS
textarea 크기조절 css
IT/CSS
블라인드 처리 방법
● 블라인드 처리 방법 · 블라인드처리는 display="none"이 아닌 아래코드 같이 해준다. · 안보이는것과 숨기는 것의 차이이다. .blind { position: absolute; left: -9999px; width: 0; height: 0; overflow: hidden; font-size: 0; line-height: 0; z-index: -1; }
IT/CSS
CSS정리
● div{display:in-line}(X) ->굳이 블록요소를 인라인화 해 줄 필요없다. ● text/font css · 글자를 진하게 : font-weight · 글자를 기울이기: font-style · 폰트명 : font-family · 글자색 : color · 밑줄 : text-decoration : none underline line-through overline(강조) · 행간 line-height · 자간 : letter-spacing(+/-) · 어간 : word-spacing · 문단정렬 : text-align : left center right justify(인위적으로 조정) font 함축형(fontfamiliy를 선언해야사용가능) · font : style weight font-si..