CSS, Styling, & Dimensions
jQuery includes a handy way to get and set CSS properties of elements:
1
2
3
|
|
1
2
3
4
5
6
7
8
|
|
Note the style of the argument on the second line — it is an object that contains multiple properties. This is a common way to pass multiple arguments to a function, and many jQuery setter methods accept objects to set multiple values at once.
CSS properties that normally include a hyphen need to be camelCased in JavaScript. For example, the CSS property font-size
is expressed as fontSize
when used as a property name in JavaScript. However, this does not apply when passing the name of a CSS property to the $.fn.css()
method as a string — in that case, either the camelCased or hyphenated form will work.
It's not recommended to use $.fn.css()
as a setter in production-ready code, but when passing in an object to set CSS, CSS properties will be camelCased instead of using a hyphen.
Using CSS Classes for Styling
As a getter, the $.fn.css()
method is valuable. However, it should generally be avoided as a setter in production-ready code, because it's generally best to keep presentational information out of JavaScript code. Instead, write CSS rules for classes that describe the various visual states, and then change the class on the element.
1
2
3
4
5
6
7
8
|
|
Classes can also be useful for storing state information about an element, such as indicating that an element is selected.
Dimensions
jQuery offers a variety of methods for obtaining and modifying dimension and position information about an element.
The code below shows a brief overview of the dimensions functionality in jQuery. For complete details about jQuery dimension methods, visit the dimensions documentation on api.jquery.com.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
|