如何将css选择器用于contenteditable =" true"
<div id="1" name="1" contentEditable="true"></div>
答案 0 :(得分:3)
div[contenteditable="true"] {
backround: red;
}
在英语中,这意味着:&#34;查找所有具有contenteditable属性且其值设置为true的div。&#34; 在上面的示例中,我们找到所有div是有满足感的,并给他们一个红色背景。
答案 1 :(得分:1)
指定html选择器,然后在方括号中指定所需属性及其值
div[contentEditable="true"]
答案 2 :(得分:0)
您可以使用css selector为属性选择任何类型的属性,只需使用[atttributeName]
。