element2 HTML inline vs inline-block vs block elements 1. inline- height와 width 속성 설정 (X)- span, a, img, em, strong, i, small 2. inline-block- height와 width 속성 설정 (O) 3. block- height와 width 속성 설정 (O)- 행(line) 전체(full width) 점유- the entire width of its parent element ※ element(요소)의 block-level과 inline-level 속성은 CSS의 "display" 값의 지정으로 변경이 가능합니다.※ inline-level element에 margin, padding, border 설정은 가능하지만 주변 요소와 설정에 따라서 지정한 효과가 나타나지 않을 수 있습니다. CSS에 inli.. 2022. 3. 15. 댓글 jQuery 메서드 비교 append, prepend append() Inserts the specified content, to the end of each element in the set of matched elements. Inserts the specified content as the last child of each element in the jQuery collection. Puts data inside an element at the last index 잘라서 붙여 넣기(이동) / 콘텐츠 끼워 넣기 syntax: .append( content [, content ] ) .append( function ) $gnb.find("li").each(function() { if ( $(this).find("a").prop("href") == wind.. 2021. 8. 22. 댓글