CSS 선언
- selector.css(“width”,”100px”);
- selector.css({
“width”:”100px”,
“height”:”100px”
}); -
selector.css({
”속성”:”값”,
”속성”: function(){ …. return 값; }
}); - var styles = {
backgroundColor : “#ddd”,
fontWeight: “”};
selector.css(styles );
CSS 호출
- selector.css([
“width”, “height”, “color”, “background-color”
]); - selector.css(”color”);
연관 메소드 : .height(), .width() … 기타 등등