I have few text inputs and I want to make them readonly by CSS but not with :
readonly: "readonly" inlined
I checked this topic:
How to style readonly attribute with CSS?
but it doesn't work for me.
I tried like this:
input.my-class[readonly]
{
}
and all of the variations of readonly="readonly" etc. but it doesn't work at all.