style 객체
document.getElementById("id").style.속성 = "값";
속성
background-color : Object.style.backgroundColor = "#00ff00";
border : Object.style.border = "3px solid blue";
height : Object.style.height = "50px";
width : Object.style.width = "50px";
font : Object.style.font = "bold 12px arial";
display : Object.style.display = "block";
float : Object.style.cssFloat = "left";
overflow : Objec.style.overflow = "scroll";
position : Object.style.position = "absolute";
visibility : Object.styel.visiblity = "hidden";
z-index : Object.style.zIndex = "1";
'Java Script & DOM > HTML DOM' 카테고리의 다른 글
DOM Area 객체 (0) | 2009.11.05 |
---|---|
DOM input radio 객체 (0) | 2009.11.04 |
태그 영역을 감추기 (0) | 2009.10.21 |
이미지 클릭시 이미지 변경하기 (0) | 2009.10.21 |
HTML DOM - designMode 속성 ( 웹 브라우저창 편집 모드) (0) | 2009.09.22 |