Snippet

CSS에서 수직 중앙 정렬하기

CSS에서 수직 중앙 정렬하기 테이블 속성 이용한 방법 .valign-parent {display:table;width:100%;height:100%;} .valign-child {display:table-cell;vertical-align:middle;} 포지션 속성 이용한 방법 .valign-parent { position: relative; width:100px;height:100px; } .valign-child { width: 50%; height: 50%; position: absolute; …

CSS에서 수직 중앙 정렬하기 Read More »

CSS에서 nth-child 속성 활용 예제

CSS에서 nth-child 속성 활용 예제 n번째 이후 li:nth-child(3n) {} li:nth-child(n+2) {} li:nth-child(3n+1) {} 테이블 tr 4행이후 모든 td table tr:nth-child(4) ~ tr td {} 4행부터 ~ 9행까지 li:nth-child(n+4):nth-child(-n+9){}

워드프레스에서 요약글을 글자수로 자르기

워드프레스에서 요약글을 글자수로 자르기 Usage custom_text_length_sub(get_the_title(), 80); custom_excerpt_length_sub(get_the_excerpt(), 80); Function iconv: function custom_text_length_sub($text_fun, $text_length) { $excerpt = $text_fun; $charlength = $text_length; if (iconv_strlen($excerpt) > $charlength) { $excerpt_more = apply_filters('excerpt_more', ''); …

워드프레스에서 요약글을 글자수로 자르기 Read More »

터미널에서 SSH 접속하기

터미널에서 SSH 접속하기 Usage sudo ssh -t <USERNAME>@<IP_ADDRESS> -p 22 -i "<KEY>" Example sudo ssh -t ubuntu@127.0.0.0 -p 22 -i "private.pem"

Scroll to Top