Following table lists down all the methods which you can use to play with CSS properties:
| Method | Description |
|---|---|
| css( name ) | Return a style property on the first matched element. |
| css( name, value ) | Set a single style property to a value on all matched elements. |
| css( properties ) | Set a key/value object as style properties to all matched elements. |
| height( val ) | Set the CSS height of every matched element. |
| height( ) | Get the current computed, pixel, height of the first matched element. |
| innerHeight( ) | Gets the inner height (excludes the border and includes the padding) for the first matched element. |
| innerWidth( ) | Gets the inner width (excludes the border and includes the padding) for the first matched element. |
| offset( ) | Get the current offset of the first matched element, in pixels, relative to the document |
| offsetParent( ) | Returns a jQuery collection with the positioned parent of the first matched element. |
| outerHeight( [margin] ) | Gets the outer height (includes the border and padding by default) for the first matched element. |
| outerWidth( [margin] ) | Get the outer width (includes the border and padding by default) for the first matched element. |
| position( ) | Gets the top and left position of an element relative to its offset parent. |
| scrollLeft( val ) | When a value is passed in, the scroll left offset is set to that value on all matched elements. |
| scrollLeft( ) | Gets the scroll left offset of the first matched element. |
| scrollTop( val ) | When a value is passed in, the scroll top offset is set to that value on all matched elements. |
| scrollTop( ) | Gets the scroll top offset of the first matched element. |
| width( val ) | Set the CSS width of every matched element. |
| width( ) | Get the current computed, pixel, width of the first matched element. |



