.css()
Categories: Style Properties | CSS
.css( propertyName )Returns: String
Description: Get the value of a style property for the first element in the set of matched elements.
-
.css( propertyName )
version added: 1.0propertyName A CSS property.
The .css()
method is a convenient way to get a style property from the first matched element, especially in light of the different ways browsers access most of those properties (the getComputedStyle()
method in standards-based browsers versus the currentStyle
and runtimeStyle
properties in Internet Explorer) and the different terms browsers use for certain properties. For example, Internet Explorer's DOM implementation refers to the float
property as styleFloat
, while W3C standards-compliant browsers refer to it as cssFloat
. The .css()
method accounts for such differences, producing the same result no matter which term we use. For example, an element that is floated left will return the string left
for each of the following three lines:
$('div.left').css('float');
$('div.left').css('cssFloat');
$('div.left').css('styleFloat');
Also, jQuery can equally interpret the CSS and DOM formatting of multiple-word properties. For example, jQuery understands and returns the correct value for both .css('background-color')
and .css('backgroundColor')
. Different browsers may return CSS color values that are logically but not textually equal, e.g., #FFF, #ffffff, and rgb(255,255,255).
Shorthand CSS properties (e.g. margin, background, border) are not supported. For example, if you want to retrieve the rendered margin, use: $(elem).css('marginTop')
and $(elem).css('marginRight')
, and so on.
-
To access the background color of a clicked div.
HTML:
<span id="result"> </span> <div style="background-color:blue;"></div> <div style="background-color:rgb(15,99,30);"></div> <div style="background-color:#123456;"></div> <div style="background-color:#f11;"></div>
CSS:
div { width:60px; height:60px; margin:5px; float:left; }
Code:
$("div").click(function () { var color = $(this).css("background-color"); $("#result").html("That div is <span style='color:" + color + ";'>" + color + "</span>."); });
.css( propertyName, value )Returns: jQuery
Description: Set one or more CSS properties for the set of matched elements.
-
.css( propertyName, value )
version added: 1.0propertyName A CSS property name.
value A value to set for the property.
-
.css( propertyName, function(index, value) )
version added: 1.0propertyName A CSS property name.
function(index, value) A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments.
-
.css( map )
version added: 1.0map A map of property-value pairs to set.
As with the .prop()
method, the .css()
method makes setting properties of elements quick and easy. This method can take either a property name and value as separate parameters, or a single map of key-value pairs (JavaScript object notation).
Also, jQuery can equally interpret the CSS and DOM formatting of multiple-word properties. For example, jQuery understands and returns the correct value for both .css({'background-color': '#ffe', 'border-left': '5px solid #ccc'})
and .css({backgroundColor: '#ffe', borderLeft: '5px solid #ccc'})
. Notice that with the DOM notation, quotation marks around the property names are optional, but with CSS notation they're required due to the hyphen in the name.
When using .css()
as a setter, jQuery modifies the element's style
property. For example, $('#mydiv').css('color', 'green')
is equivalent to document.getElementById('mydiv').style.color = 'green'
. Setting the value of a style property to an empty string — e.g. $('#mydiv').css('color', '')
— removes that property from an element if it has already been directly applied, whether in the HTML style attribute, through jQuery's .css()
method, or through direct DOM manipulation of the style
property. It does not, however, remove a style that has been applied with a CSS rule in a stylesheet or <style>
element.
As of jQuery 1.6, .css()
accepts relative values similar to .animate()
. Relative values are a string starting with +=
or -=
to increment or decrement the current value. For example, if an element's padding-left was 10px, .css( "padding-left", "+=15" )
would result in a total padding-left of 25px.
As of jQuery 1.4, .css()
allows us to pass a function as the property value:
$('div.example').css('width', function(index) { return index * 50; });
This example sets the widths of the matched elements to incrementally larger values.
Note: If nothing is returned in the setter function (ie. function(index, style){})
, or if undefined
is returned, the current value is not changed. This is useful for selectively setting values only when certain criteria are met.
-
To change the color of any paragraph to red on mouseover event.
HTML:
<p>Just roll the mouse over me.</p> <p>Or me to see a color change.</p>
CSS:
p { color:blue; width:200px; font-size:14px; }
Code:
$("p").mouseover(function () { $(this).css("color","red"); });
-
Increase the width of #box by 200 pixels
HTML:
<div id="box">Click me to grow</div>
CSS:
#box { background: black; color: snow; width:100px; padding:10px; }
Code:
$("#box").one( "click", function () { $( this ).css( "width","+=200" ); });
-
To highlight a clicked word in the paragraph.
HTML:
<p> Once upon a time there was a man who lived in a pizza parlor. This man just loved pizza and ate it all the time. He went on to be the happiest man in the world. The end. </p>
CSS:
p { color:blue; font-weight:bold; cursor:pointer; }
Code:
var words = $("p:first").text().split(" "); var text = words.join("</span> <span>"); $("p:first").html("<span>" + text + "</span>"); $("span").click(function () { $(this).css("background-color","yellow"); });
-
To set the color of all paragraphs to red and background to blue:
HTML:
<p>Move the mouse over a paragraph.</p> <p>Like this one or the one above.</p>
CSS:
p { color:green; }
Code:
$("p").hover(function () { $(this).css({'background-color' : 'yellow', 'font-weight' : 'bolder'}); }, function () { var cssObj = { 'background-color' : '#ddd', 'font-weight' : '', 'color' : 'rgb(0,40,244)' } $(this).css(cssObj); });
-
Increase the size of a div when you click it:
HTML:
<div>click</div> <div>click</div>
CSS:
div { width: 20px; height: 15px; background-color: #f33; }
Code:
$("div").click(function() { $(this).css({ width: function(index, value) { return parseFloat(value) * 1.2; }, height: function(index, value) { return parseFloat(value) * 1.2; } }); });