CSS selector symbol

Source: Internet
Author: User

jQuery, CSS common selector
symbols Description Example Description
No sign immediately Equivalent to the "and" relationship input.k-textbox{
...
}
Select input and include elements of the K-textbox class
, (comma) Selector separator, select multiple elements H1, h2{
...
}
Select all elements of H1 and H2
. (dots) Class Selector . k-textbox{
...
}
Select the element containing the K-textbox class
* (asterisk) All elements *{
...
}
Select all the Elements
# (pound number) ID Selector #mem-id{
...
}
Select an element with ID Mem-id
[] (brackets) Property Selector h1[class= ' K-textbox ']{
...
}
Select H1 and include elements of the K-textbox class
Spaces Descendant Selector #container h1{
...
}
Select all of the H1 descendant elements in ID container
> (greater than sign) Child element Selector #container >h1{
...
}
Select all child elements that are H1 within the ID of container (child elements only, Sun does not count)
+ (plus) Brother selector behind close-up #mem-id+h1{
...
}
Select the H1 element that is immediately followed by the ID of Mem-id
~ (wavy line) Brother Element Selector #mem-id~h1{
...
}
Select all H1 sibling elements with ID Mem-id
:

CSS selector symbol

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.