//select elem with id "special" and give it a border $("#special").css("border", "2px solid red");
//we can also pass in an object with styles var styles = { backgroundColor : "pink", fontWeight: "bold" }; $("#special").css(styles);
//select all li's and make them yellow $("li").css("color", "yellow"); //select all elements with class "big" //and give them an orange border $(".big").css("border", "1px dashed orange");