Search w3schools.com:

SHARE THIS PAGE

jQuery css() Method

jQuery HTML/CSS Methods jQuery HTML/CSS Methods

Example

Set the color property of all <p> elements:

$("button").click(function(){
  $("p").css("color","red");
});

Try it yourself »

Definition and Usage

The css() method sets or returns one or more style properties for the selected elements.

When used to return properties:
This method returns the specified CSS property value of the FIRST matched element.
However, shorthand CSS properties (like "background" and "border") are not fully supported and may give different results in different browsers, when used to return property values.

When used to set properties:
This method sets the specified CSS property for ALL matched elements.


Syntax

Return the CSS property value:

$(selector).css(property)

Set the CSS property and value:

$(selector).css(property,value)

Set CSS property and value using a function:

$(selector).css(property,function(index,currentvalue))

Set multiple properties and values:

$(selector).css({property:value, property:value, ...})

Parameter Description
property Specifies the CSS property name, like "color", "font-weight", etc.
value Specifies the value of the CSS property, like "red", "bold", etc.
function(index,currentvalue) Specifies a function that returns the new value for the CSS property
  • index - Returns the index position of the element in the set
  • currentvalue - Returns the current value of the CSS property


Examples

Try it Yourself - Examples

Return CSS property value
Return the specified CSS property value of the FIRST matched element.

Set CSS property and value using a function
Using a function to change a CSS property for the selected elements.

Set multiple CSS properties and value pairs
How to set multiple CSS properties and values for the selected elements.


jQuery HTML/CSS Methods jQuery HTML/CSS Methods



W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]