.CSS()

.CSS()

API : http://api.jquery.com/css/

  • CSS를 선언할때 사용한다
  • 적용된 CSS정보를 호출 할때 사용한다.

CSS 선언

  1. selector.css(“width”,”100px”);
  2. selector.css({
        “width”:”100px”,
        “height”:”100px”
    });
  3. selector.css({
        ”속성”:”값”,
        ”속성”: function(){ …. return 값; }
    });
  4. var styles = {
        backgroundColor : “#ddd”,
        fontWeight: “”

    };

    selector.css(styles );

 

CSS 호출

  1. selector.css([
    “width”, “height”, “color”, “background-color”
    ]);
  2. selector.css(”color”);

 

연관 메소드 : .height(), .width() … 기타 등등