Jquery-css () method (20)

Source: Internet
Author: User
Tags manual
jQuery css () method

The CSS () method sets or returns one or more style properties for the selected element. return to CSS properties

To return the value of the specified CSS property, use the following syntax:

CSS ("PropertyName");

The following example returns the Background-color value of the first matching element: instance

$ ("P"). CSS ("Background-color");

Try it yourself set CSS properties

To set the specified CSS properties, use the following syntax:

CSS ("propertyname", "value");

The following example sets the Background-color value for all matching elements: instance

$ ("P"). CSS ("Background-color", "yellow");

Try it yourself. set multiple CSS properties

To set multiple CSS properties, use the following syntax:

CSS ({"PropertyName": "Value", "PropertyName": "Value",...});

The following example sets Background-color and font-size for all matching elements: instance

$ ("P"). css ({"Background-color": "Yellow", "font-size": "200%"});

Try the jQuery HTML Reference manual for yourself

For the full content of the jquery CSS method, please visit our jquery CSS Operation reference Manual

Related Article

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.