Css selector for elements with style attribute

前端 未结 3 437
长情又很酷
长情又很酷 2021-01-03 10:39

I have an element with the following styles

Now I want to se

3条回答
  •  情歌与酒
    2021-01-03 11:15

    Maybe this http://reference.sitepoint.com/css/elementtypeselector not sure if you mean something like an if statement in c?

    [ { attribute | attribute { = | |= | ~= } attribute value } ] {
    
    declare stuff here..
    
     }
    

    or

    this matches any type input that matches 'submit'

     input[type="submit"] {
      declarations
    }
    

提交回复
热议问题