TextArea -使用CSS设置readonly属性为true

TextArea - set readonly attribute to true using CSS

本文关键字:属性 true readonly 设置 使用 CSS TextArea      更新时间:2023-09-26

我想使用css ONLY禁用某些类下的textarea。我不想用Javascript

<div class='commentArea'>
    <textarea> I want do disable this using CSS </textarea>
</div>

如何将属性readonly设置为textarea ?或者有没有其他方法可以让textarea使用CSS不可编辑?

<div class='commentArea'>
   <textarea readonly> I want do disable this using CSS </textarea>
</div>

你可以使用'pointer-events' css属性,如下所示。

.commentArea textarea{
    pointer-events: none;
}