jquery Modify CSS Properties

Source: Internet
Author: User

jQuery CSS Operations
JQuery has three important functions for working with CSS:
$ (selector). CSS (Name,value)
$ (selector). css ({properties})
$ (selector). CSS (name)

The function css (name,value) sets the value for a given CSS property for all matching elements:
Example
$ (selector). CSS (Name,value)
$ ("P"). CSS ("Background-color", "Red");

The function css ({properties}) also sets values for a series of CSS properties for all matching elements:
Example
$ (selector). css ({properties})
$ ("P"). css ({"Background-color": "Red", "font-size": "200%"});

The function css (name) returns the value of the specified CSS property:
Example
$ (selector). CSS (name)
$ (this). CSS ("Background-color");
  sometimes the CSS properties of the Div are controlled by the jquery syntax, for example: $ ("Div1"). CSS ("Csstext", "height:50px!important") This format, ' 50px ' and '!important ' do not have spaces, But this will overwrite the previous CSS properties.

jquery Modify CSS Properties

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.