使用aws apigateway update-rest-api --rest-api-id <id> --patch-operations op=replace,path=/description,value='description'
定位button#1
很容易,但如何使用另一个选择器定位其他两个。
button[data-state]
我正在寻找一个可以定位非空属性的选择器。 怎么办呢?
答案 0 :(得分:1)
button[data-state]:not([data-state=""]) {
background-color: red;
}
<button id=1 class=notify data-state> some text </button>
<button id=2 class=notify data-state="downloading"> some text </button>
<button id=3 class=notify data-state="render"> some text </button>