본문 바로가기

전체 글

[ CSS] 사용법. 1. Class 사용. CSS Code:.classP { background-color: white; } HTML Code: Class는 "classP " 하얀 배경 Display: Class는 "ClassP" 하얀 배경 2. Tag Name 사용 CSS Code:p { background-color: white; } HTML Code:하얀 배경 Display: 하얀 배경 3. ID 사용 CSS Code:#exID { background-color: white; } HTML Code: ID는 "exID" 하얀 배경 Display: ID는 "exID" 하얀 배경 적절한 사용 예 : CSS Code:p#exID1 { background-color: white; } p#exID2 { text-transform.. 더보기
첫주 HTML Table을 이용한 레이아웃 작성 기본 테이블 구조 1 2 3 4 12 34 colspan 가로 행 합칠 col수 1 3 4 1 34 rowspan 세로 열 합칠 row수 1 2 4 12 4 수업은 기본적으로 테이블 레이아웃 작성 법에 이야기 하고 끝냈습니다. 더보기
HTML (Hyper Text Markup Language) HTML (Hyper Text Markup Language) 1. 기본구조 내용 표제 부분에 들어갈 말을 정의. 1~6까지의 숫자를 사용하고 숫자가 커질수록 표제는 작아짐 default H4 주석을 달거나 잠시 이미지를 보이지 않게 할때 사용 2. 문단 혹은 줄을 바꾸는 태그 공백 문단을 바꾸는 태그 줄바꿈과 동시에 줄을 띈 것같은 효과 문단을 바꾸는 태그 줄바꿈의 역할만 수행 여백이나 줄간격 등을 고정시켜 주는 역할 들여쓰기 전체 문장을 가운데로 정렬 - align : 정렬하기 (left/center/right) 3. 글자관련 태그 - size : 글자의 크기를 마음대로 조절. 숫자는 1~7까지며 7이 가장 큰 크기 (default : 3) , 굵은 글씨를 나타내 주는 태그 , , 이탤릭체의 글씨를 나.. 더보기
Last Leaf Acoustic by Ok Go Title : Last Leaf (Acoustic) Author / Artist : Ok Go Guiter Tab 가을 냄새가 물씬. Intro: C (light strumming) e|--0--0--0--0--0--------0--| b|--1--1--1--1--1--------1--| g|--0--0--0--0--0--------0--|4x(all the C's in the song are played like this) d|--2--2--2--2--0h2-0h2--2--| a|--3--3--3--3--3--------3--| E|--0--0--0--0--0--------0--| Verse: C Am if you should be F the last autumn leaf C hanging from t.. 더보기
[C#]RegisterStartupScript() 사실 이녀석을 알게 된지는 얼마 되지 안았다. 어제 알았다 -_ -;; ClientScriptManager cs = Page.ClientScript; cs.RegisterStartupScript(this.GetType(),"PopupScript", "alert('Test alert');",true); 이녀석의 용도는 서버컨트롤 안에서 스크립트를 사용하는 것? 이라고 일축하려고 한다. 아직 정확하게 사용은 해보지 못했으므로... 조금더 공부해서 정리 할 예정.... 여기까지 키핑!! 더보기
javascript url 가져오기 (get url) var host = window.location.host; var hostname = window.location.hostname; var href = window.location.href; var host = window.location.host; var port = window.location.port; var pathname = window.location.pathname; var search = window.location.search; var protocoal = window.location.protocol; sometime it's very useful. 더보기
[javascript]mobile detection(모바일 여부 확인) document.write("browser : " + navigator.appName + " "); if (navigator.appVersion.substring(0, 1) == "4") document.write("4th generation browser! "); document.write("patform/os : " + navigator.platform + " "); document.write("user agent data:" + navigator.appVersion + " "); //document.write("user agent data:" + navigator.userAgent + " "); if (navigator.cookieEnabled == true) { document.write("coo.. 더보기
브라우저 버전 체크 mvsNavigatorName = "" + navigator.appName if(mvsNavigatorName == "Netscape") { alert(navigator.appName + " " + parseFloat(navigator.appVersion)) } else if(navigator.appName == "Microsoft Internet Explorer") { if(parseInt(navigator.appVersion) 더보기

반응형