Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery css() Method

❮ 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 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

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

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.