Specify multiple attribute selectors in CSS

后端 未结 5 600

What is the syntax for doing something like:

input[name=\"Sex\" AND value=\"M\"]

Basically, I want to select the input element

相关标签:
5条回答
  • 2020-11-27 10:48

    Simple input[name=Sex][value=M] would do pretty nice. And it's actually well-described in the standard doc:

    Multiple attribute selectors can be used to refer to several attributes of an element, or even several times to the same attribute.

    Here, the selector matches all SPAN elements whose "hello" attribute has exactly the value "Cleveland" and whose "goodbye" attribute has exactly the value "Columbus":

    span[hello="Cleveland"][goodbye="Columbus"] { color: blue; }

    As a side note, using quotation marks around an attribute value is required only if this value is not a valid identifier.

    JSFiddle Demo

    0 讨论(0)
  • 2020-11-27 10:50

    Concatenate the attribute selectors:

    input[name="Sex"][value="M"]
    
    0 讨论(0)
  • 2020-11-27 10:52

    For concatenating it's:

    input[name="Sex"][value="M"] {}
    

    And for taking union it's:

    input[name="Sex"], input[value="M"] {}
    
    0 讨论(0)
  • 2020-11-27 11:01

    Just to add that there should be no space between the selector and the opening bracket.

    td[someclass] 
    

    will work. But

    td [someclass] 
    

    will not.

    0 讨论(0)
  • 2020-11-27 11:02
    [class*="test"],[class="second"] {
    background: #ffff00;
    }
    
    0 讨论(0)
提交回复
热议问题