我可以 select 具有特定 class 的所有元素并在 CSS 中将只读属性设置为 true

Can I select all elements with a specific class and set the readonly attribute to true in CSS

我的文本输入很少,我想通过 CSS 将它们设为只读,而不是 :

readonly: "readonly" inlined

我检查了这个主题:

How to style readonly attribute with CSS?

但这对我不起作用。

我这样试过:

input.my-class[readonly]
{
}

以及 readonly="readonly" 等的所有变体,但它根本不起作用。

CSS 不能 设置 任何 html 属性。

CSS只能风格他们。