Ankiwoong (1841) 썸네일형 리스트형 HTML5 - 190609 Basic Study 23(CSS 상속) 1. HTML Code css 상속에 대해서 32px=2em 부모요소에 적용한 스타일이 자식요소에 그대로 적용되는 현상 자동상속과 수동상속이 잇다 수동상속은 키워드 inherit를 사용한다. 자동상속은 글자스타일이 주로 상속된다. div내에 글자 div안에 p박스에 글자 링크(Link) css 스타일 우선 순위 welcome 안녕하세요 감사합니다 아이디선택자 인라인스타일 2. CSS Code @charset "utf-8"; /* CSS Document */ html{} body{ color:blue; font-family:sans-serif; font-size:14px; } div{ color:red; border:1px solid red; width:500px; } p{ color:green; /* 테.. Python Learn the basics Quiz 43 Q> In this mission your task is to determine the popularity of certain words in the text. (이 임무에서 당신의 임무는 텍스트의 특정 단어의 인기를 결정하는 것입니다.) At the input of your function are given 2 arguments: the text and the array of words the popularity of which you need to determine. (함수의 입력에는 두 가지 인수가 제공됩니다. 텍스트와 단어의 배열을 결정해야합니다.) When solving this task pay attention to the following points: (이 작업을 해결할 때 다음 사항에주의.. Python Learn the basics Quiz 42 Q> You are given the current stock prices. You have to find out which stocks cost more. (현재 주식 가격이 주어집니다. 어떤 주식이 더 많이 들었는지 알아야합니다.) Input: The dictionary where the market identifier code is a key and the value is a stock price. (시장 식별자 코드가 키이고 값이 주가 인 딕셔너리.) Output: A string and the market identifier code. (문자열과 시장 식별자 코드.) Example: best_stock({ 'CAC': 10.0, 'ATX': 390.2, 'WIG': 1.2 }) == 'ATX' .. Python Learn the basics Quiz 41 Q> You are given two strings and you have to find an index of the second occurrence of the second string in the first one. (두 개의 문자열이 주어지고 첫 번째 문자열에서 두 번째 문자열이 두 번째 나타나는 색인을 찾아야합니다.) Let's go through the first example where you need to find the second occurrence of "s" in a word "sims". ("sims"라는 단어에서 두 번째 "s"가 필요한 첫 번째 예제를 살펴 보겠습니다.) It’s easy to find its first occurrence with a function index .. HTML5 - 190608 Basic Study 22(Note) HTML 태그 CSS 선택자 CSS 속성 ----------- CSS 레이아웃 설계 CSS 동적인 구현 ----------- 반응형 웹 구현 ----------- 웹 디자이너 - CSS 코딩 가능 시각 디자이너 - 포토샵 , 일러스트 웹 퍼블리셔 - 자바스크립트 + 제이쿼리 ----------- 서버 - AJAX, DB연동 개발자 분야 ----------- emmet beauty browse FTP ----------- z-coding 설치 웹문서에는 HTML 태그들로 뼈대(골격)을 이루고 있다. 태그를 선택해서 모양을 스타일을 변경하거나 위치 변경 선택자로 선택한다. 1)태그선택자 h2*3 속성:속성값; color > 글자색상 command > apply cource > formatting 코드정렬하기.. HTML5 - 190608 Basic Study 21(CSS 반응 선택자) 1. 반응 선택자 선택자:active div:active 클릭 시 선택자:hover div:hover 마우스 롤 오버 시 2. HTML Code url 단위 마우스를 올리세요 box1 box2 box3 box4 3. CSS Code @charset "utf-8"; /* CSS Document */ * { margin: 0; padding: 0; } ul, li{ list-style:none; } a{ color:black; text-decoration:none; } /* 박스에 배경 그림 넣기 */ div#box1{ width:400px; height:400px; background-image:url(../img/3.png); } div#box1:hover{ background-image:url(../i.. HTML5 - 190608 Basic Study 20(CSS 동위(형제) 선택자) 1. 동위(형제) 선택자 선택자+선택자 h1+div A다음에B 선택자~선택자 h1~div A이후에B들 2. HTML Code 네비게이션바 만들기 동위(형제 선택자) 메인메뉴1 서브메뉴1 메인메뉴2 서브메뉴2 보이기/숨기기 welcome to my world happy new year merry christmas css 색상단위 css 색상단위 3. CSS Code @charset "utf-8"; /* CSS Document */ * { margin: 0; padding: 0; } ul, li{ list-style:none; } a{ color:black; text-decoration:none; } h3{ width:200px; border:1px solid black; } h3:hover{ backgro.. HTML5 - 190608 Basic Study 19(CSS 구조 선택자) 1. 구조 선택자 일반 구조 선택자(위치) 선택자:first-child li:first-child 선택자:last-child li:last-child 선택자:nth-child(수열) li:nth-child(2n+1) 선택자:nth-last-child(수열) li:nth-last-child(2n+1) 형태 구조 선택자(등장) 선택자:first-of-type h1:first-of-type 선택자:last-of-type h1:last-of-type 선택자:nth-of-type(수열) h1:nth-of-type(2n+1) 선택자:nth-last-of-type(수열) h1:nth-last-of-type(2n+1) 2. HTML Code 네비게이션바 만들기 welcome1 welcome2 welcome2 welco.. 이전 1 ··· 190 191 192 193 194 195 196 ··· 231 다음