★ 가상 클래스 1. :first-child : 자신이 자신의 그룹에서 첫번째 자식인지? li:first-child { color : orange; } 2. :last-child : 자신이 자신의 그룹에서 마지막 자식인지? li:last-child { color : red; } 3. :nth-child(n) : 자신이 자신의 그룹에서 n번째 자식인지? li:nth-child(2) { color : blue; } 4. :nth-last-child(n) : 자신이 자신의 그룹에서 마지막에서 n번째 자식인지? li:nth-last-child(3) { color:blueviolet } ■ 실행 결과 ■ n 1. 숫자 : index(위치) > 1부터 시작 2. 수열 :2n, 2n+1, 5n+2 etc.. 3. 수..
★1. 네이버 IT기사 리스트 만들기 https://news.naver.com/main/clusterArticles.naver?id=c_202304152240_00000090&mode=LSD&mid=shm&sid1=105&oid=001&aid=0013884570 ■ HTML 작업 스페이스X 스타십 발사 승인 "17일 비행 목표" 스페이스X 달·화성 탐사우주선 '스타십' 오늘 첫 시험발사 예정 일론 머스크가 이끄는 우주기업 스페이스X의 화성 탐사용 대형 우주선 '스타십(Starship)'이 17일(현지시간) 첫 지구궤도 시험 비행에 나선다. 달 … 뉴스1 머스크 화성 개척 꿈 첫 단추…스타십 이르면 오늘 밤 발사 일런 머스크의 화성 이주 꿈을 담은 우주선 '스타십'이 이르면 오늘 밤 첫 지구궤도 비행에 나..
★ 메뉴를 이용한 사이트 만들기 main : 메인 화면 header : 상위 헤더 section : 내용 list-style-type : 리스트의 스타일을 조정 ■ 소스코드 Java Oracle HTML CSS JavaScript Java Lorem ipsum dolor sit amet consectetur adipisicing elit. Non atque distinctio ex reiciendis? Molestias suscipit magnam animi sed non aspernatur reprehenderit repellendus veritatis ipsa laudantium consequuntur, soluta, quam quia asperiores! Cum consequatur voluptat..
★ 요소의 위치, Position 1. padding > 부모가 자식의 위치 지정 2. margin > 스스로 위치 지정 3. position > 정석(CSS1 ~ CSS3) 4. transfom > 정석(CSS3) ★ Position 좌표값 사용 > 위치 지정 x(left), y(top) 좌표를 지정하는 방식이 여러개 제공 1. position : static; 1. position : static; - 기본값 - 정적 좌표 - 워드 프로세스 방식 > FlowLayout 방식 - 코딩 순서대로 출력되는 방식 - 먼저 코딩 > 위에 배치, 같은줄 : 왼쪽에 배치 - 나중에 코딩 > 아래에 배치, 오른쪽에 배치 2. position : absolute; 2. position : absolute; - 절대 ..
★ CSS 초기화 1. Reset CSS 2. Normalize CSS 3. 디자인 프레임워크 or 라이브러리 Bootstrap 재단 부르마 순수 타키온 etc ...... ■ 1. Reset CSS 모든 CSS를 초기화 시킴 https://meyerweb.com/eric/tools/css/reset/ CSS Tools: Reset CSS CSS Tools: Reset CSS The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on. The general reasoning behind this ..