如果内容可编辑为true / false,如何更改样式? 当editable为true时需要红色,而当false为false时需要灰色。 这在CSS中是否可行?
这是我的HTML代码:
<body spellcheck="false" autocorrect="off" contenteditable="false" style="color:gray;>
Need to change color of the text when it is false
</body>
答案 0 :(得分:3)
attribute
使用css slector
这是关于css选择器的教程
:https://www.w3schools.com/cssref/css_selectors.asp
body[contenteditable="true"]{
color:red;
}
body[contenteditable="false"]{
color:grey;
}