언어/HTML&CSS&JAVA Script
-
자바스크립트 로그인 화면 만들기언어/HTML&CSS&JAVA Script 2020. 4. 27. 17:40
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12..
-
자바 스크립트 함수언어/HTML&CSS&JAVA Script 2020. 4. 27. 17:39
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 function add(){ var sum=1; return sum; } function add(x){ var sum=x+1; return sum; } function add(x,y){ var sum =x+y; return sum; } function add(x,y,z){ var sum= x+..
-
position언어/HTML&CSS&JAVA Script 2020. 4. 27. 14:57
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 body {font-weight: bold; font-size: 12pt;} .ap1{ position: absolute; left: 30px;top: 70px; background-color: yellow;width: 400px;he..
-
CSS우선순위언어/HTML&CSS&JAVA Script 2020. 4. 25. 13:46
인라인>내부>외부>기본 강제적용!important 외부스타일 시트정의하는 위치가 중요 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 p{ color: green; background-color: yellow; } ///////////////////////////////////////// p{color : blue;} p{color : yellow;} p{color : red;} css가 중복 정의된 경우 어떤것이 적용될까? http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter http:..
-
CSS가상클래스 선택자언어/HTML&CSS&JAVA Script 2020. 4. 25. 13:40
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 div {color: white} h2:first-letter {font-size: 30px;color: red; text-transform: uppercase;} h3:first-line{color: blue;} input:focus{background-color: red;} input:checked+div.d1{background-color: gray;} input:checked+div.d2{background-color: black;} states pseudo-classes 문제) 대한민국 수도는? 정답 작성 : answer 힌트보기 : 남대문이 있는 곳이..
-
HTML&CSS언어/HTML&CSS&JAVA Script 2020. 4. 25. 13:31
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 Register Form body { background-color: green; } input { background-color: blue; } .myclass { color: yellow; } input[type="password"] { color: white; } 회원가입..
-
HTML 버튼양식언어/HTML&CSS&JAVA Script 2020. 4. 25. 13:25
autofocus required placeholder 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 회원가입 이름 ID PW PW확인 이메일 성별 남자 여자 그외 전화 번호 홈페이지 생일 좋아하는 색깔 관심분야 경제 IT 사회 과학 음악 미술 http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter http://colorscripter.com/info#e" target="_blank" style="tex..