★ Background 1. background-color 2. background-image 3. background-repeat 4. background-position 5. background-attachment ■ 네이버 로고 가져오기 https://www.naver.com/ 네이버 네이버 메인에서 다양한 정보와 유용한 컨텐츠를 만나 보세요 www.naver.com F12 개발자 모드 > 요소 선택 하단에 링크 https://s.pstatic.net/static/www/img/uit/sp_main_947f65.png 이미지 파일 가져와서 보고 싶은 해당 로고 보이기 ■ 로고 보이기 #logo { width:445px; height: 110px; background-image: url(images/..
★ CSS 선택자(가상 클래스) 1. :first-child 가상 클래스 검색된 태그 자체를 조작 2. ::before 가상 요소(Element) 검색된 태그 주변을 조작 ★ 전후 선택자 1. ::before = :before 2. ::after = :after ■ HTML 코드 Lorem ipsum dolor sit amet consectetur adipisicing elit. Suscipit libero laudantium cum deleniti nostrum similique inventore, quam placeat cupiditate porro aliquid ipsam hic molestiae incidunt voluptate laboriosam accusamus! Ad, atque. 빨강 노랑..
★ Form 컨트롤러 Selector with CSS ■ HTML 코드 Html Lorem, ipsum dolor sit amet consectetur adipisicing elit. Optio quos mollitia provident quae nihil quam ex, consequatur voluptas molestiae vero illum? Nulla ratione, nam sequi voluptates praesentium consectetur possimus rerum. 제목 Lorem ipsum dolor sit amet consectetur adipisicing elit. Deleniti id laudantium, quo vero praesentium reiciendis! Dolore, p..
★ 가상 클래스 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. 수..
★ 문제 4 × 3 = 12이다. 이 식을 통해 다음과 같은 사실을 알 수 있다. 3은 12의 약수이고, 12는 3의 배수이다. 4도 12의 약수이고, 12는 4의 배수이다. 두 수가 주어졌을 때, 다음 3가지 중 어떤 관계인지 구하는 프로그램을 작성하시오. 첫 번째 숫자가 두 번째 숫자의 약수이다. 첫 번째 숫자가 두 번째 숫자의 배수이다. 첫 번째 숫자가 두 번째 숫자의 약수와 배수 모두 아니다. 입력 입력은 여러 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 10,000이 넘지않는 두 자연수로 이루어져 있다. 마지막 줄에는 0이 2개 주어진다. 두 수가 같은 경우는 없다 ★ 소스코드 import java.util.Scanner; public class Main { public static vo..